@font-face {
    font-family: "Pupilice";
    src: url("../../../fonts/CalSans-Regular.ttf") format("truetype");
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-align: justify;
}

body{
    font-family: Pupilice;
    background-image: url("images/9b859812-8030-46c7-8a05-3b90cc6bb519.png");
    background-size: 20vw;
    background-repeat:repeat;
}

ul {
    list-style:none;
}

nav {
    background:white;
    width:100%;
    position:sticky;
    left:0;
    top:0;
    padding-top:10px;
    font-size: clamp(10px, 3vw, 25px);
}

nav ul {
    width:100%;
    display: flex;
    justify-content: space-evenly;
}

nav ul li a {
color: black;
text-decoration: none;}

.menu-deroulant ul {
    display:none;
    font-size:20px;
}

.menu-deroulant:hover {
        background-color: rgb(180 180 180);
}

.menu-deroulant:hover ul {
    display:block;
    z-index:1;
    position:absolute;
    background-color: rgb(200 200 200);
    width:auto;
}

.menu-deroulant:hover ul li:hover {
    background-color: rgb(0 0 0 /50%);
}

.layout {
    display:flex;
    flex-wrap:wrap;
    height: 100vh;
    gap:20px;
    padding:20px;
    justify-content: center;
}


/* .layout > * {
    border : 20px solid red
} */

@media screen and (width<=700px) {
    .layout img {
        height: auto;
        max-width:100%;
    }

    .layout {
        height: auto;
        max-width:95%
    }
}

.affiche {
    display : flex;
    flex-direction: column;
    /* border:10px solid pink; */
    height:100%;
    width:100%;
}

.affiche img {
    height:100%;
    object-fit: contain;
    /* border:10px solid; */
    width:fit-content;
}

.affiche span {
    font-size: 14px;
}

.illustrations {
    display: flex;
    flex-direction: column;
    height:100%;
    width:250px;
}

/* .illustrations > * {
    border : 15px solid purple;
} */


.illustrations img {
    height:100%;
    max-width:100%;
    object-fit: cover;
}

.fiche-technique {
    /* border:10px solid; */
    width: 250px;
}

.fiche-technique p {
    font-size:15px;
}

.synopsis {
    text-align: center;
    max-width:1000px;
}

.synopsis p {
    margin-bottom: 1em;
}

.extrait-video {
    width:100%;
    max-width:640px;
    text-align:right;
}

.extrait-video iframe {
    width:100%;
    max-width:640px;
}