/* Estilo general de la página */
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: 'Montserrat', sans-serif;
color: #fff;
margin: 0;
padding: 0;
background: url('/pokemon-in-the-wild.png') no-repeat center center fixed;
background-size: cover;
}

/* Sección de lista de archivos */
.file-list {
max-width: 600px;
width: 90%;
background-color: rgba(255, 255, 255, 0.9); /* fondo semitransparente para ver la imagen */
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
padding: 20px;
text-align: center; /* centra el contenido */
}

/* Cambiar color de h2 a azul */
.file-list h2 {
font-weight: 700;
margin-bottom: 20px;
color: #007BFF;
}

/* Lista de archivos */
.file-list ul {
list-style: none;
padding: 0;
}

.file-list li {
margin: 10px 0;
padding: 10px 15px;
border-radius: 5px;
background-color: #e0f0ff;
transition: background-color 0.3s;
}

.file-list li:hover {
background-color: #cfe8ff;
}

/* Enlaces de archivos */
.file-list a {
text-decoration: none;
color: #007BFF;
font-weight: 500;
}

.file-list a:hover {
text-decoration: underline;
}
