body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #e0f7fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px; /* Ajusta la altura deseada */
    object-fit: cover; /* Mantiene proporciones */
    border-bottom: 5px solid #007BFF;
}

.gallery-item p {
    padding: 15px;
    font-size: 1.2em;
    color: #007BFF;
}

.social-icons {
    margin-top: 30px; /* Espacio arriba del ícono */
}

.facebook-icon {
    font-size: 24px; /* Tamaño del ícono */
    color: #007BFF; /* Color del ícono */
    text-decoration: none; /* Sin subrayado */
    transition: color 0.3s;
}

.facebook-icon:hover {
    color: #0056b3; /* Color al pasar el mouse */
}
