body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed; /* Image de fond */
    background-size: cover; /* Ajuste l'image de fond pour couvrir toute la page */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.poster-container {
    position: relative;
    width: 100%; /* Ajuste la taille de l'affiche pour qu'elle soit 50% de la largeur de la fenêtre */
    max-width: 500mm;  /* Largeur maximale d'une affiche A3 */
    height: auto;
}

.poster {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster:hover {
    cursor:pointer;
    transform: scale(1.05); /* Zoom léger au survol */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7); /* Ombre portée au survol */
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('etoiles.png'); /* Image des étoiles scintillantes */
    background-size: cover;
    background-blend-mode: screen;
    z-index: -1;
    opacity: 0.5;
    animation: twinkling 2s infinite ease-in-out;
}

@keyframes twinkling {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}
