:root {
    --content-width: 1000px;
}

@font-face {
    font-family: 'Leckerli One';
    src: url('fonts/LeckerliOne-Regular.woff2') format('woff2'),
    url('fonts/LeckerliOne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: roboto, sans-serif;
    background: #eaeaea;
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/hero.jpg');
    background-size: cover;
    background-position: bottom center;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    animation: hero-conten-blur 8s linear infinite;
    /*transition: backdrop-filter 250ms ease-in-out;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

@keyframes hero-content-blur {
    0% {
        backdrop-filter: blur(10px);
    }
    50% {
        backdrop-filter: blur(30px);
    }
    100% {
        backdrop-filter: blur(1px);
    }
}

.hero-content-header {
    display: flex;
    width: 1000px;
    padding: 2rem 0;
}


.hero-content-body {
    isolation: isolate;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
}

.hero-content-body h2 {
    mix-blend-mode: difference;
    color: white;
    position: relative;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
}
@media (max-width: 999px) {
    .hero-content-header {
        width: 100%;
    }
    .hero-content-body h2 {
        font-size: 3rem;
    }
}

.start-meeting {
    display: inline-block;
    font-size: 2.4rem;
    color: white;
    border: 1px solid mediumseagreen;
    padding: .2rem;
    border-radius: 5rem;
    font-weight: bold;
    font-family: 'Leckerli One', cursive;
    cursor: pointer;
    animation: start-meeting-border 8s linear infinite;
}

@media (max-width: 999px) {
    .start-meeting {
        font-size: 2rem;
    }
}

@keyframes start-meeting-border {
    0% {
        border-color: white
    }
    10% {
        border-color: orangered;
    }
    20% {
        border-color: orange;
    }
    30% {
        border-color: yellow;
    }
    40% {
        border-color: green;
    }
    50% {
        border-color: lightblue;
    }
    60% {
        border-color: cornflowerblue;
    }
    70% {
        border-color: darkslateblue;
    }
    80% {
        border-color: darkcyan;
    }
    90% {
        border-color: purple;
    }
    100% {
        border-color: lightgreen;
    }
}

.start-meeting div {
    background-color: mediumseagreen;
    padding: 1.6rem;
    border-radius: 5rem;
    transition: background-color .4s ease-in-out;
}

.start-meeting:hover div {
    background-color: indianred;
}
