.contenedor{
    margin: 0 auto;
    width: 98%;
    height: 100%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.texto{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.encabezado{
    width: 99%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    text-align: left;
    font-weight: bold;
    margin: 20px;
    border-radius: 10px;
    background-color: aquamarine;
}

.encabezado .titulo-noticia{

    font-size: 30px;
    color: rgba(0, 0, 0,0.7);
    padding: 7px;

    
}

.encabezado .fecha{

    font-size: 15px;
    color: rgba(0, 0, 0,0.7);
    padding: 7px;
    font-style: italic;
}

.cuerpo{
    margin-left: 10px ;
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;

}

.cuerpo .txt{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.fotos{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.fotos .title-galeria{
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
}

.fotos .galeria-fotos{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.fotos .galeria-fotos img{
    box-shadow: 5px 5px 10px;
    width: 300px;
    height: 190px;
    margin: 30px;
    border: ridge;
    border-radius: 3px;
    transition: ease-in-out 0.8s;
    cursor: pointer;
}

.fotos .galeria-fotos img:hover{
    transform: scale(1.2);
    box-shadow: 5px 5px 10px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup img {
    max-width: 80vw;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}