/* Estilos para el fondo de pantalla */
body {
    position: relative;
}

body::before {
    content: "";
    background-image: url(https://cepeige.org/home/wp-content/uploads/2023/03/CEPEIGE_clusters.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

/* Estilos para el contenido centrado */
.center {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Permite que los elementos se ajusten a la misma fila en pantallas pequeñas */
    padding: 20px; /* Espacio alrededor del contenido centrado */
}

/* Estilos para el card */
.article-card {
    width: 500px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin: 30px; /* Espacio entre los cards */
}

/* Efecto de elevación al hacer hover */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16), 0 6px 6px rgba(0, 0, 0, 0.12);
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Estilos para texto más pequeño en pantallas pequeñas */
@media (max-width: 1000px) {
    .article-card {
        width: 700%; /* Reducir el ancho del card en pantallas pequeñas */
    }

   
}

/* Estilos para el texto centrado */
#Titulo{

text-align: center;
text-decoration: underline;
}
#texto, .bienvenido {
    color: black;
    text-align:center;
    justify-content: center;
    margin: 10px;
    padding: 10px;
}


.cambios {
    color: bisque;
    
}