
/*CUERPO*/
.container{
    margin-top: 50px;
    width: 100%;
}
.contenido-container{
    width: 75%;
    margin: auto;
}
.contenido-container img{
    width: 100%;
    margin-bottom: 35px;
    animation: appear 1.2s linear;
}
.Titulo{
    width: 100%;
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
    animation: appear  linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.Titulo h2{
    color: #060b14;
    font-size: 70px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}
.texto-reseña{
    padding-top: 20px;
    text-align: justify;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    line-height: 1.8;
}
.texto-reseña h3{
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #3b3b3c;
    margin-bottom: 25px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.texto-reseña p{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.texto-reseña h4{
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 25px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.texto-reseña li{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
    margin-left: 50px;
}
.texto-reseña  h4 ul{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
/*Responsive 769px*/
@media (max-width: 750px){
    .container{
        margin-top: 0;
    }
    .contenido-container{
        width: 100%;
    }
    .contenido-container img{
        margin: 0;
    }
    .Titulo{
        width: 100%;
        background-color: #00009A;
        align-items: center;
        justify-content: center;
        margin: 0;
        animation: appear 1s linear;
    }
    .Titulo h2{
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 30px;
        color: white;
        font-weight: 900;
    }
    .fondo{
        width: 100%;
        background-color: rgba(213, 221, 225, 0.348);
    }
    .texto-reseña {
         width: 85%;
         margin: auto;
         padding-bottom: 20px;
    }
    .texto-reseña p{
        animation: appear 1s    linear;
    }
    .texto-reseña h3 {
        animation: appear-right 1s linear;
    }
    .texto-reseña li{
        margin-left: 0px;
    }
    .texto-reseña  h4{
        color: rgb(8, 30, 78);;
    }
    .texto-reseña  h3{
        color: rgb(8, 30, 78);;
    }
}


