
.ingresantes-texto{
    margin: 40px 0;
    padding: 0 50px;
}

.ingresantes-texto p{
    text-align: center;
    font-size: 20px;
}

.ingresantes-contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ingresantes-uni{
    margin: 10px;
}

.ingresantes-uni img{
    width: 400px;
    border: 5px solid #e0af60;
    transition: .2s;
}

.ingresantes-uni img:hover{
    transform: scale(1.04);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.lightbox img:hover {
    transform: scale(1.02);
}

@media (max-width: 400px){
    .ingresantes-uni img{
        width: 250px;
    }

    .ingresantes-texto{
        padding: 0 20px;
     }

    .ingresantes-texto p{
        font-size: 17px;
    }
}