* {
    margin: 0px;
    padding: 0px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    background-color: #c2d9e8;
    color: white;

}

*::selection {
    background-color: white;
    color: blue;
}

.titulo {
    font-size: 50px;
    text-align: center;
    margin-top: 0px;
    padding-top: 25px;
    height: 100px;
    background-color: #1b65a7;
}


.descripcion {
    font-size: 22px;
    margin-top: -25px;
    padding-bottom: 15px;
    text-align: center;
    background-color: #1b65a7;
}

.titulo-form {
    text-align: center;
    font-size: 23px;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #f2f4f5;
    color: #1b65a7;
}

#formulario {
    margin: auto;
    padding: 15px;
    width: 55%;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 25px;
    margin-bottom: 35px;
    height: 80%;
    border: 4px solid;
    border-radius: 12px;
    background-color: #345ea8;
}

.labels {
   display: inline-block;
   width: 100%;
   text-align: left;
   margin-top: 10px;
   color: #ffff;
   background-color: #345ea8;
}

.controls {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 18;
    color: #457b9d;
    background-color: white;
    color: #333333;
    height: 25px;
}

.textarea {
    display: inline;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    padding-top: 20px;
    background-color: white;
    color: #333333 ;

}

.buttons {
    text-align: center;
    width: 100%;
    height: 35px;
    background-color: #f2f4f5;
    color: #1b65a7;
    margin-top: 15px;
    border: none;
    border-radius: 6px;
    
}

.foot {
    text-align: center;
    font-size: 18px;
    margin-top: -15px;
    width: 100%;
    height: 60px;
    padding-top: 20px;
    background-color: #1b65a7;
}


@media screen and (max-width: 800px){
    #formulario{
        width: 95%;
    }
    .labels{
        width: 70%;
    }
    .controls{
        width:100%;
    }

    .descripcion {
        width: 100%;
        font-size: medium;
    }

    .titulo-form {
        width: 100%;
        font-size: 18px;
    }

    .foot {
        font-size: medium;
    }
}

