body{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 100;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
*{
    box-sizing: border-box;
}

main{
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 65px;
}

.logo{
    width: 300px;
    height: auto;
    margin-bottom: 35px;
}

h1{
    font-size: 28px;
    font-weight: 100;
    text-align: center;
}

footer{
    background: #FFEBF3;
    font-size: 14px;
    width: 100%;
    padding: 25px;
    flex: 0;
}

footer p{
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 768px){
    main{
        padding: 30px;
    }

}

@media screen and (max-width: 475px) {

    .logo{
        max-width: 220px;
    }

    h1{
        font-size: 20px;
    }

}