/* Reset básico */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Estilo del título */
.title {
    text-align: center;
    padding: 20px;
    color: #333;
}

/* Estilo de la galería */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 15px;
    padding: 10px;
}

/* Estilo de las imágenes */
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portada {
	width: 70%;
}
/* Efecto hover en imágenes */
.gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
