/*CUERPO*/
.container{
    width: 100%;
}
.container h2{
    padding: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #17336d;
    text-align: center;
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
    animation: appear-right 1s linear;
}
.texto_definicion{
    font-size: 20px;
    width: 80%;
    margin: auto;
    text-align: justify;
    font-size: "Noto Sans", sans-serif;
    line-height: 1.8;
    animation: appear 1s linear;
}
.imagen_libro_reclamos{
    margin: auto;
    width: 60%;
    margin-top: 50px;
    margin-bottom: 30px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.imagen_libro_reclamos img{
    width: 100%;
}
.button_formulario{
    width: 15%;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    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 769px*/
@media (max-width: 750px){
    .container{
        background-color: rgba(213, 221, 225, 0.348);
        
    }
    .container h2{
        font-size: 30px;
        margin: 0;
    }
    .imagen_libro_reclamos{
        width: 90%;
    }

    .button_formulario{
        width: 40%;
    }
    .button_formulario{
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 40px;
    }
}