:root {
    --font-small: 1rem;
    --font-medium: 1.8rem;
    --font-large: 2.2rem;
    --font-xlarge: 5rem;
}

@font-face {
    font-family: 'doto';
    src: url('fonts/Doto-VariableFont_ROND,wght.ttf') format('truetype');
}

@font-face {
    font-family: 'figtree';
    src: url('fonts/Figtree-VariableFont_wght.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    font-family: 'figtree', sans-serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    height: 90vh;
    width: 100vw;
    margin-top: 10vh;
}

#comingsoon {
    font-family: 'doto', sans-serif;
    color: black;

    font-size: var(--font-xlarge);
    letter-spacing: 1rem;
}

#contact {
    font-weight: 100;
    font-size: var(--font-medium);
    color: white;
    line-height: 1.5;
    margin-top: 4rem;
}

#contact a {
    color: whitesmoke;
    text-decoration: none;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    body {
        background-image: url('img/Coming_Soon_Landscape.jpg');
    }

    #logo {
        width: 400px;
        height: auto;
    }
}


@media screen and (max-width: 767px) {
    body {
        background-image: url('img/Coming_Soon_Portrait.jpg');
    }

    #logo {
        width: 60vw;
        height: auto;
    }
    
    #comingsoon {

        font-size: var(--font-large);
        letter-spacing: 0.4rem;
    }

    #contact {
        font-size: var(--font-small);
    }
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 5vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'doto', sans-serif;
    font-size: var(--font-small);
}

#footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}