:root {
    --border-width: 5px;
    --color-yellow: #fec600;
}
html, body {
    font-family:  "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
}
body {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;

}
.page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.page-content__frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Lato, sans-serif;
    font-size: 1.5rem;
    color: #000;
    background: #fff;
    padding: 2rem;
    margin: 0 0 1rem 0;
    border: 3px solid #fec600;
}

.page-content__headline {
    line-height: 1.5rem;
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
}
.page-content_backgroundimage {
    filter: blur(1px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
}
.page-content__subclaime {
    font-size: 0.85rem;
    color: #000;
}
.page-content__subclaime span {
    color: #fec600;
}

/*-- WAVES --*/
.wave {
    background: rgb(254 198 0 / 50%);
    /*background: rgb(0 0 0 / 50%);*/
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 0em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}
.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@media (min-width: 768px) {

}
@media (min-width: 992px) {
    .page-content__frame {
        font-size: 2rem;
        border: 5px solid #fec600;
        padding: 2.5rem;
    }
    .page-content__headline {
        font-size: 3rem;
        line-height: 3rem;
    }
}
@media (min-width: 1200px) {

}

@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}
/* Wave animation */
@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}
