.container{
    width: 100%;
}
.container h1{
    color: #00009A;
    margin: 50px 50px;
    text-align: center;
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    animation: appear 1s linear;
}
.imagen-noticia-1{
    width: 60%;
    margin: auto;
    animation: appear 1s linear;
}   
.imagen-noticia-1 img{
    width: 100%;
}
.informacion{
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    color: black;
    margin: auto;
    margin-top: 45px;
    width: 80%;
    text-align: justify;
    line-height: 1.8;
}
.informacion ul li{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.imagen-pdf{
    width: 80%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
}
.imagen-pdf img{
    width: 15%;
    animation: appear 4s infinite;
}
.imagen-pdf a{
    color: #00009A;
    text-align: center;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/*PUBLICIDAD_DE_LOS_PROGRAMAS_DE_ESTUDIO*/

.container-publicidad{
    width: 100%;
}
.container-publicidad h1{
    width: 55%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #22438c;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}
.conjunto_publicidad{
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: auto;
}

.publicidad{
    width: 45%;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    transition: all 500ms ease;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 25px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0,0.2);
	animation: appear linear;
	animation-timeline: view();
	animation-range: entry 0%;
}

.publicidad img{
    width: 100%;
}

.publicidad:hover{
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3%);
}

/*Responsive 769px*/
@media (max-width: 750px){
    .container h1{
        margin: 30px 30px;
        text-align: center;
        font-size: 30px;
    }
    .imagen-noticia-1{
        width: 100%;
    }  
    .informacion{
        margin-top: 30px;
        width: 85%;
        margin-bottom: 30px;
    }
    .imagen-pdf{
        width: 90%;
        display: block;
        margin: auto;
    }   
    .imagen-pdf img{
        width: 100%;
    }
    .imagen-pdf a{
        display: block;
        font-size: 25px;
        margin-bottom: 30px;
    }
    
    .container-publicidad h1{
        width: 100%;
        margin-top: 30px;
        margin-bottom: 35px;
        font-size: 20px;
        padding: 5px;
        margin: auto;
    }
    
    .conjunto_publicidad{
        display: block;
        flex-wrap: wrap;
        width: 100%;
        margin: auto;
    }
    .publicidad{
        width: 95%;
    }
}