.card{
    transition: all 0.3s;
}

.card:hover{
    transform: scale(1.1);
    background-color: #bce4fe;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/ITSTA.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7; /* Ajusta la opacidad para mejorar la visibilidad del contenido */
    z-index: -1; /* Envía la imagen detrás de todo */
}