@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.root{
    background-color: #151515;
    color: #fff;
    font-family: Montserrat;
    max-width: 1440px;
    margin: 0 auto;
}
.main{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    display: block;
    font-size: 60px;
    text-align: center;
}
h2{
    font-size: 25px;
    margin: 20px 0;
    font-size: 300;
    font-weight: 400;
    text-align: center;
    letter-spacing: 4px;
}
h3{
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 8px;
    font-size: 30px;
    color: #cbcbcb;
}
.contact{
    margin-top: 50px;
    border-top: 1px solid #363636;
    width: 70%;
}

@media screen and (max-width: 64em) {
    h1{
        font-size: 30px;
    }   
    h2{
        font-size: 18px;
    }
    h3{
        font-size: 16px;
        letter-spacing: 4px;
    }
    .contact{
        width: 90%;
    }
}