body {
    background-image: url('../imagenes/albertfinal.jpg'); /* Imagen alusiva al homenajeado */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f5f5f5;
    background-color: #1a1a1a;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Encabezado, navegación y pie con colores más sobrios */
header, nav, footer {
    background-color: rgba(0, 0, 0, 0.6);
    color: #f5f5f5;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
}

/* Cuerpo principal con fondo oscuro y elegante */
main, section {
    margin: 30px auto;
    padding: 30px;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

/* Imágenes con bordes suaves */
img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* Tablas más sobrias */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

td, th {
    padding: 12px;
    border: 1px solid #666;
}

th {
    background-color: #444;
    color: #fff;
}

/* Formularios con estilo sobrio y elegante */
form input, form select, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1em;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background-color: #555;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #777;
}

