@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    font-size: 19px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(20, 20, 20);
    scroll-behavior: smooth;
}
h1{
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    color: #0d75ce;
}
.image{
    text-align: center;
}
img {
    width: 120px;
    height: 120px;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.message{
    width: 60%;
    margin: 2% auto 0;
    text-align: center;
}
.message p{
    margin-top: 1%;
}
.back{
    margin-top: 10%;
}

@media screen and (max-width: 650px){
html{
    font-size: 16px;
}
.message{
    width: 80%;
    margin-top: 5%;
}
.message p{
    margin-top: 5%;
}

}