/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    /* background-color: #121212; */
    color: #f1f1f1;
    margin: 0;
    padding: 0;
}

/* Encabezado */
header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    color: #ff7043;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff7043;
}

nav ul li a.active {
    color: #f2b600;
}

/* Estilos para el cuerpo */
main {
    padding: 20px;
    text-align: center;
}

/* Estilo para las imágenes de las series */
.series-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.serie {
    width: 200px;
}

.serie img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.serie p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer button:hover {
    background-color: #ff7043;
}
p.prueba {
    text-align: center;
    color: black;
}