/* style-cinema.css */

body,
h1,
p,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    /* Texte en blanc pour un contraste dramatique */
    background-color: #111;
    /* Fond noir pour évoquer une salle de cinéma */
    padding: 20px;
}

h1 {
    color: #ffd700;
    /* Or pour un effet glamour */
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Ombre pour un effet profond */
}

p {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #aaa;
    /* Gris clair pour le texte secondaire */
}

ul {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

li {
    background: #333;
    /* Fond gris foncé pour les éléments de la liste */
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    /* Ombre pour un effet 3D */
}

input[type="checkbox"] {
    margin-right: 15px;
}

a {
    color: #ffd700;
    /* Lien en or pour correspondre au titre */
    text-decoration: none;
    display: block;
    flex-grow: 1;
}

a:hover {
    text-decoration: underline;
    /* Souligner les liens au survol */
}
