html, body{
    background-color: #2f3136;
    color: white;
    width: auto;
    height: auto;
}
hr{
    max-width: 50%;
}
h1{
    color: #F5C51E;
    text-align: center;
    font-size: 10vh;
}
h2{
    text-align: center;
    font-size: 5vh;
}
h3{
    text-align: center;
    font-size: 5vh;
}
#textDescription{
    text-align: center;
    font-size: 3vh;
    font-weight: lighter;
}
#formContact{
    display: flex;
    justify-content: center;
}
form{
    width: 50%;
}
label{
    font-size: 20px;
    margin-left: 2%;
}
.formData{
    margin: 10px;
    font-size: 25px;
    width: 95%;
    height: 30px;
    border: 0px;
    border-radius: 5px;
}
textarea{
    width: 95%;
    font-size: 20px;
    margin: 10px;
    height: 200px;
}
#divSubmit{
    text-align: center;
}
#submit{
    background-color: green;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
}
@media screen and (max-width: 600px){
    h1{
        font-size: 15vw;
    }
}
@media screen and (max-width: 800px){
    form{
        width: 90%;
    }
}