@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@300;700&display=swap');

html, body {
    width: 100vw;
    height: 100vh;
}

body {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url("../img/background-alt.jpg") no-repeat center 25% fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20em;
    flex-grow: 1;
}

.container h1 {
    color: white;
    font-family: Montserrat;
    margin: 1em 0;
    text-align: center;
}

.container .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .logo-wrapper img {
    width: 35%;
}

.container .logo-wrapper h2 {
    color: white;
    font-family: Open Sans;
    font-size: .8em;
    font-weight: bold;
    margin: .5rem 0;
}

footer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    width: 100vw;
    height: 30px;
    padding: .25rem 0;
    background: #513948;
}

footer>p {
    font-family: Open Sans;
    color: white;
    margin: 0 1.5rem;
}

footer .delimiter {
    color: white;
    margin: 0;
}

footer a {
    color: white;
}

@media screen and (max-width: 640px) {
    body {
        background: none;
        overflow: hidden;
    }

    .container {
        background: url("../img/background-alt.jpg") center -50px no-repeat;
        background-size: cover;
        padding-top: 5em;
        margin-top: 0;
    }

    .container h1 {
        font-size: 1.75rem;
    }

    footer {
        position: fixed;
        display: flex;
        flex-direction: column;
        bottom: 0;
        width: 100vw;
        padding: .5rem 0;
        height: auto;
        background: #513948;
    }

    footer p {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer>p>.delimiter {
        display: none;
    }
}