* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    max-width: 100%;
    max-height: 100vh;
    background-color: #f7f8ff;
}

main{
    max-width: 1200px;
    height: fit-content;
    margin: auto;
    padding: auto;
    align-content: center;
}

h1 {
    width: 100%;
    color: #4862ff;
    font-size: 36px;
    text-align: center;
    font-family: "Source Serif Pro";
    line-height: 36px;
}

.egresados2025 img{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border-radius: 20px;
}

.promocion25 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #d1e5f0;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.237);

}

.box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box img {
    width: 1000px;
    height: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}


.box h2 {
    font-family: "Source Sans 3";
    font-size: 32px;
    color: #4862ff;
    margin: 0;
}

.box h4{
    width: 90%;
    font-family: "Source Sans 3";
    font-size: 14px;
    line-height: 18px;
    color: #4862ff;
    text-align: center;
    margin:0;
}

.nombres {
    width: 90%;
    font-family: "Source Sans 3";
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #4862ff;
    text-align: center;
    margin:0;
}

/* h2 span {
    background-color: white;
    padding: 0 15px;
} */

/* GALERIA */

.imagencabezal{
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: auto;
}

.imagencabezal img{
    width:100%;
    height: auto;
}
/* .titulo h1{
    color: white;
    font-size: 42px;
    text-align: center;
    font-family: "Source Serif Pro";
    line-height: 42px;

} */

.img-gallery {
    width: 100%;
    height: fit-content;
    padding: 40px;
    margin: 0;
    gap:40px;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.img-gallery img {
    width: 240px;
    height: 240px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: 1s;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
    opacity: 80%;
}

.img-gallery img:hover {
    transform: scale(1.05);
    opacity: 100%;
}

/* EGRESADOS */
.egresados{
    width: 200px;
    height: auto;
    position: fixed;
    z-index: 10;
    margin: 0;
    padding: 0;
    left: 100px;
}
.egresados img{
    width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
}

/* MODAL */

.ful-img {
    display: none;
    /* oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.cerrar {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cerrar:hover {
    color: black;
}

.ful-img img {
    width: auto;
    height: 95%;
}

@media screen and (max-width: 400px) {
    h2 {
        text-decoration: underline;
    }

    h2::before {
        display: none;
    }

    h2 span {
        padding: 0;
    }

}