
/*CUERPO*/
/*CONTENIDO*/
.container{
    width: 100%;
}
.imagen_inicio{
    width: 80%;
    margin: auto;
    animation: appear 1s linear;
}
.imagen_inicio img{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}
.subtitulo{
    width: 100%;
    background-color: #00009A;
    text-align: center;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.subtitulo h3{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 25px;
    padding: 15px;
    margin-bottom: 30px;
}
.container-table{
    width: 100%;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
}
.fecha{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.fecha h3{
    color: #22438c;
    margin-bottom: 30px;
    text-align: center;
    font-size: 40px;
    font-family:sans-serif
}
table{
text-align: center;
margin-bottom: 30px;
animation: appear linear;
animation-timeline: view();
animation-range: entry 0%;

}
th{
padding: 25px;
background-color: rgb(23, 241, 241);
}

td{
padding: 20px;
background-color: rgba(238, 243, 243, 0.907);
}
tr:hover{
    background-color: rgba(126, 131, 131, 0.825);
}

/*Responsive 769px*/
@media (max-width: 750px){
    .imagen_inicio{
        width: 100%;
    }
    table{
        width: 90%;
        margin: 0;
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 1vh; 
    }
    th{
        padding: 10px;
        font-size: 10px;
    }
    td{
        padding: 9px;
        font-size: 10px;
    }
} 


@media (max-width: 350px){
    th{
        padding: 5px;
        font-size: 8.5px;
    }
    td{
        padding: 9px;
        font-size: 8.5px;
    }
}