/* Estilos Generales */
body {
    font-family: Segoe print, Verdana, Tahoma, sans-serif, Arial, sans-serif;
    background-color: #121212;
    color: #f1c40f;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background: #1c1c1c;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #f1c40f;
}

.descripcion {
    font-size: 1.2rem;
    color: #bbb;
}

/* Sección de imágenes dinámicas */
#imagenes-dinamicas img {
    width: 300px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Contenedores de contenido */
#contenidos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.contenedor {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.contenedor:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.5);
}

.contenedor img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.contenedor a {
    display: block;
    color: #f1c40f;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0;
}

.contenedor p {
    font-size: 0.9rem;
    color: #ddd;
}

/* Pie de página */
footer {
    background: #1c1c1c;
    padding: 10px;
    margin-top: 20px;
    color: #bbb;
    font-size: 0.8rem;
}    