* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
}

header {
    background: linear-gradient(to right, #ff6b6b, #f0e130);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
}

section {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding-left: 20px;
}

ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
}

ul li::before {
    content: "•";
    color: #ff6b6b;
    font-size: 1.5rem;
    position: absolute;
    left: -20px;
    top: -5px;
}

#affiche-film{
    text-align: center;
}

#affiche-film img {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background: #ff6b6b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
