* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

body {
    background-image: url(/assets/images/background-mobile.webp);
    background-size: cover;
    background-position: bottom center;
}

main {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    
}

#container {
    width: 80%;
    min-height: 40vh;
    margin: 0 auto;
}

.upper-section {
    margin-bottom: 4em;
}

.image-box {
    margin-bottom: 2.5em;
}

.logo {
    width: 100%;
}

.text-box {
    text-align: center;
    color: white;
}

.text-box h1 {
    font-size: 2em;
}

.text-box span {
    font-size: 1.2em;
}

.button-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1em;
}

.button-wrap a {
    width: 100%;
    background-color: white;
    color: #0959ae;
    padding: 1.2em 2em 1em 2em;
    text-align: center;
    font-size: 1.3em;
    border-radius: 15px;
    box-shadow: 0px 5px 20px black;
    transition: color 0.1s linear, background-color 0.15s linear;
}

.button-wrap a:hover {
    background-color: #0959ae;
    color: white;
}

.copyright {
    width: 100%;
    color: white;
    text-align: center;
    margin-top: 4em;
}

@media (min-width: 768px) {

    #container {
        width: 70%;
    }

}

@media (min-width: 1024px) {

    body {
        background-image: url(/assets/images/background-desktop.webp);
        background-size: cover;
        background-position: center center;
    }

    #container {
        width: 40%;
    }

}

@media (min-width: 1800px) {

    #container {
        width: 30%;
        max-width: 480px;
    }

}