@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;600;800;900&display=swap');

*,
*::before,
*::after{
box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: #1a1919;
    color: aliceblue;
}

.container{
 text-align: center;
}

.title{
    font-size: 1.3rem;
    margin-top: .7em;
}

.coming-soon{
    font-size: 4rem;
}

small{
    font-weight: 200;
}

/* MEDIA QUERIES */


@media screen and (min-width:480px){

    .title{
        margin-top: 1.4em;
        font-size: 1.5rem;
    }
    
    .coming-soon{
        font-size: 6rem;
    }
}

@media screen and (min-width:780px){

    .title{
        margin-top: 1.4em;
        font-size: 2rem;
    }
    
    .coming-soon{
        font-size: 6rem;
    }
}