#quit-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    background-color: black;
    margin: 0;
    position: fixed;
    top: 3vh;
    left: 3vh;
    z-index: 9999;
    transition: 0.3s ease-in-out;
  }

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

body {
    background-image: url(../image/GrueHorizontale.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /*Empêcher le scroll*/
    overflow-y: hidden;
}

body h1 {
    font-family: 'TTfirstextmedium', sans-serif;
    font-size: 64px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

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

/* RESPONSIVE DESIGN YA KNOW */

/* Styles pour les écrans de petite taille */
@media (max-width: 768px) {
    body h1 {
        font-size: 24px;
    }
}

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

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