body {
    background-image: url(../image/index.webp);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100vh;
    padding-left: 5vh;
    /*Empêcher le scroll*/
    overflow-y: hidden;
}

body h1 {
    font-family: "TT Firs Text Trial", sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

body h3 {
    font-family: 'TimesNewRomanBold', sans-serif;
    font-size: 32px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

body h2 {
    font-family: 'TTfirstextBLACK', sans-serif;
    font-size: 32px;
    color: white;
    transition: 0.3s ease-in-out;
}

body h2:hover {
    color: #ED3434;
}

.entry ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 4vh;
}

.title {
    width: 100%;
    line-height: 1px;
    text-align: center;
}

footer {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    right: 0;
}

footer p {
    font-family: 'TTfirstextlight', sans-serif;
    font-size: 12px;
    color: white;
    transition: 0.3s ease-in-out;
}

footer .footergauche {
    display: flex;
    justify-content: flex-start;
    margin-left: 5vh;
}

footer .footergauche .instagram {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footergauche .instagram:hover {
    background-color: #A99667;
}

footer .footergauche .linkedin {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footergauche .linkedin:hover {
    background-color: #A99667;
}

footer .footergauche .vimeo {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footergauche .vimeo:hover {
    background-color: #A99667;
}

footer .footerdroit {
    display: flex;
    justify-content: flex-end;
    margin-right: 5vh;
}

footer .footerdroit .france {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footerdroit .france:hover {
    background-color: #A99667;
}

footer .footerdroit .uk {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footerdroit .uk:hover {
    background-color: #A99667;
}

footer .footerdroit .copyright {
    padding: 24px;
    background-color: black;
    transition: 0.3s ease-in-out;
}

footer .footerdroit .copyright:hover {
    background-color: #A99667;
}

/*Bouton Plein ÉCRAN*/

#fullscreen-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 5vh;
    right: 5vh;
    z-index: 9999;
    transition: 0.3s ease-in-out;
  }

  #fullscreen-button:hover {
    transform: scale(1.1);
  }

  #fullscreen-button img {
    width: 22px; /* Ajustez la taille de l'icône selon vos besoins */
    height: 22px;
  }

/* RESPONSIVE DESIGN YA KNOW */

/* Styles pour les écrans de petite taille */
@media (max-width: 768px) {
    body h1 {
        font-size: 24px; /* Taille de police plus grande pour les téléphones */
        margin: auto;
    }

    body h3 {
        font-size: 20px; /* Taille de police plus grande pour les téléphones */
        margin: 0 auto;
    }

    body h2 {
        font-size: 20px; /* Taille de police plus grande pour les téléphones */
    }

    .title {
        width: 100%;
        line-height: 32px;
        text-align: center;
    }

    footer .footergauche {
        display: flex;
        justify-content: flex-start;
        margin-left: 5vh;
    }
    
    footer .footergauche .instagram {
        padding: 12px;
        background-color: black;
    }
    
    footer .footergauche .linkedin {
        padding: 12px;
        background-color: black;
    }
    
    footer .footergauche .vimeo {
        padding: 12px;
        background-color: black;
    }
    
    footer .footerdroit {
        display: flex;
        justify-content: flex-end;
        margin-right: 5vh;
    }
    
    footer .footerdroit .france {
        padding: 12px;
        background-color: black;
    }
    
    footer .footerdroit .uk {
        padding: 12px;
        background-color: black;
    }
    
    footer .footerdroit .copyright {
        padding: 12px;
        background-color: black;
    }
}

/* Styles pour les écrans de taille moyenne */
@media (min-width: 768px) and (max-width: 1024px) {
    body h1 {
        font-size: 48px;
    }
    body h2 {
        font-size: 28px;
    }
    body h3 {
        font-size: 24px;
    }

    footer .footergauche {
        display: flex;
        justify-content: flex-start;
        margin-left: 5vh;
    }
    
    footer .footergauche .instagram {
        padding: 18px;
        background-color: black;
    }
    
    footer .footergauche .linkedin {
        padding: 18px;
        background-color: black;
    }
    
    footer .footergauche .vimeo {
        padding: 18px;
        background-color: black;
    }
    
    footer .footerdroit {
        display: flex;
        justify-content: flex-end;
        margin-right: 5vh;
    }
    
    footer .footerdroit .france {
        padding: 18px;
        background-color: black;
    }
    
    footer .footerdroit .uk {
        padding: 18px;
        background-color: black;
    }
    
    footer .footerdroit .copyright {
        padding: 18px;
        background-color: black;
    }
}

/* Styles pour les écrans larges */
@media (min-width: 1024px) {
    body h1 {
        font-size: 64px;
    }
}