
/*CUERPO*/
.container{
    width: 100%;
}
.imagen{
    width: 500px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
    animation: appear 1s linear;
}
.imagen img{
    width: 100%;
}
.texto{
    width: 75%;
    margin: auto;
    text-align: justify;
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
strong{
    color: rgb(33, 28, 28);
}
.titulo{
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
    color: rgb(33, 28, 28);
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.titulo h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 40px;
    padding-bottom: 40px;
    color: #112c66
}
.imagen_formulario{
    margin: auto;
    margin-top: 60px;
    width: 50%;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}   
.imagen_formulario img{
    width: 100%;
}
.button_formulario{
    width: 15%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 60px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.button_formulario button{
    width: 100%;
    padding: 15px;
    background-color: rgb(42, 33, 129);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    font-weight: 700;
}
.button_formulario button:hover{
    background-color: rgb(70, 62, 124);
    cursor: pointer;
}

/*Responsive 700px*/
@media (max-width: 700px){
    .container{
        background-color: rgba(213, 221, 225, 0.348);
        padding: 5px;
    }
    .texto{
        width: 90%;
        font-size: 15px;
    }
    .titulo{
        width: 80%;
        font-size: 15px;
        margin: auto;
        margin-top: 50px;
    }
    .imagen{
        width: 90%;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .imagen_formulario{
        width: 90%;
    }
    .button_formulario{
        width: 40%;
    }
.button_formulario button{
    padding: 11px;
}
}
