body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a; /* Fondo oscuro tipo cine */
    color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #e50914; /* Rojo estilo Netflix */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Estilos de la Tabla */
table {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 20px; /* Espacio entre filas */
}

td {
    padding: 20px;
    background-color: #262626;
    border-radius: 10px;
    vertical-align: middle;
}

/* Títulos y Párrafos */
h2 {
    color: #e50914;
    margin-top: 0;
}

p {
    font-size: 1.1em;
    color: #ccc;
}

/* Estilo de las Imágenes */
img {
    width: 250px; /* Tamaño fijo para uniformidad */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05); /* Efecto de zoom al pasar el mouse */
}

/* Responsividad básica */
@media (max-width: 600px) {
    table, tr, td {
        display: block;
        width: 100%;
    }
    
    td {
        text-align: center;
        margin-bottom: 10px;
    }
}