
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    outline: none;
    scroll-behavior: smooth; /*Pour que les déplacements soient lent*/
    font-family: mundial, inter;
}

html {
    background-color: black;
}

body {
    /*background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(8,5,0,1) 50%, rgb(0, 59, 0) 100%);*/
    background: black;
    background-size: cover; /* couvre toute la page */
    background-repeat: no-repeat; /* empêche la répétition */
    min-height: 100vh;
}

.image-titre {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 45px;
}

.content {
    padding-top: 10px;
    padding-left: 60px;
    padding-right: 60px;
}

.titre {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

header {
    /* position: fixed; */
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: white;
    font-size: 20px;
    width: 100%;
    /* padding: 20px; */
}

.vid {
    width: 100%;
    height: auto;  /* Maintient le ratio de la vidéo */
    max-height: 85vh; /* Limite la hauteur de la vidéo à 80% de la hauteur de la fenêtre */
}

.exit img {
    transition: transform 0.3s ease;
}

.exit img:hover {
    transform: scale(1.3); /* Agrandit légèrement le bouton */
}


@media (max-width: 1200px) {

    .content {
        padding: 45px;
    }

    .image-titre img {
        width: 350px;
    }

    .exit img {
        width: 15px;
    }

    header {
        font-size:17px;
        width: 100%;
        /* padding: 20px; */
        z-index: 10;
    }

    .titre {
        margin-top: 90px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 780px) {

    .content {
        padding: 10px;
    }

    .image-titre img {
        width: 300px;
    }

    .exit img {
        width: 12px;
    }

    header {
        font-size:15px;
        width: 100%;
        /* padding: 20px; */
        z-index: 10;
    }

    .titre {
        margin-top: 150px;
        margin-bottom: 15px;
    }
    /* body {
        background-size: contain; 
        background-position: top; 
    } */
}
