@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

body {
    background: #FBE763;
    margin: 0px;
    font-family: Cause, Lato, Arial, Helvetica, sans-serif;
}

#top {
    background-color: #C52D2A;
}

#background {
    background: radial-gradient(circle, rgba(251, 231, 99, 1) 0%, rgba(254, 179, 75, 1) 100%);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
}

.wave {
    background-image: url("../img/welle.png");
    background-repeat: repeat-x;
    height: 49px;
    width: 100%;    
    z-index: 1;
}

#wave1 {
    top: 120px;
    z-index: 2;
}

#wave2 {
    bottom: 0px;
    transform: rotate(180deg);
    position: fixed;
}

#fineprint {
    text-align: center;
    color: white;
    width: 100%;
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    z-index: 1;
}

#main {
    padding-top: 100px;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 100px;
}

#info {
    max-width: 300px;
    color: black !important;
    line-height: 1.5;
    font-weight: 400;
}

#img {
    max-width: 450px;
}

.link {
    background-color: #C52D2A;
    color: white;
    font-size: 28px;
    outline: 2px dotted white !important;
    border: none;
    padding: 10px 17px 10px 17px;
    font-family: Cause, Lato, Arial, Helvetica, sans-serif;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    text-transform: none;
    font-weight: 400;
}

h1 {
    font-family: Cause, Lato, Arial, Helvetica, sans-serif !important;
    font-size: 30px !important;
    color: black !important;
}

.link:hover {
    background-color: #d66846;
}

@media only screen and (max-width: 800px) {
    #wave1 {
        top: -35px;
        position: relative;
        z-index: 2;
    }    

    #main {
        top: 90px;
        bottom: 0px;
        padding-bottom: 90px;
        overflow: auto;
    }

    #img {
        max-width: 80%;
    }
}