html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    background: url('img/PhotoFOND.jpg') no-repeat center 0%;
    background-size: cover;
    text-align: center;
    color: white;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
}

h1 {
    font-size: 6rem;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    margin-top: 3%;
}

.buttons {
    display: flex;
    gap: 50px;
    margin-top: 10px;
    justify-content: center;
}

.button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    justify-content: center;
}

.button img {
    width: 120px;
    height: 120px;
}

.button span {
    margin-left: 15px;
    color: #FFFFFF;
    font-weight: 900;
}

.footer {
    position: absolute;
    bottom: 6%;
    right: 1%;
    width: 20rem;
    z-index: 2;
}

.footer img {
    width: 200px;
}

.footer-shape {
    position: absolute;
    bottom: -3%;
    right: -5%;
    width: 12rem;
    height: auto;
    z-index: 1;
}

/* Media Queries pour rendre la page responsive */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 4rem;
        /* Réduire la taille du titre sur des écrans plus petits */
    }

    .buttons {
        flex-direction: column;
        /* Empiler les boutons verticalement sur petits écrans */
        gap: 20px;
    }

    .button {
        font-size: 1.5rem;
        /* Réduire la taille de la police des boutons */
    }

    .button img {
        width: 80px;
        height: 80px;
        /* Réduire la taille des images des boutons */
    }

    /* Réduire la taille de la skyline et du bandeau bas */
    .footer {
        position: absolute;
        bottom: 5%;
        right: 5%;
        /* Garder la position à droite */
        z-index: 2;
        width: 150px;
        /* Réduire la taille de la skyline */
    }

    .footer img {
        width: 150px;
        /* Réduire la taille du logo du footer */
    }

    .footer-shape {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100px;
        /* Réduire la largeur du bandeau bas */
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 3rem;
        /* Réduire encore plus sur des écrans très petits */
    }

    .buttons {
        gap: 10px;
    }

    .button {
        font-size: 1.2rem;
        /* Taille des boutons plus petite */
    }

    .button img {
        width: 60px;
        height: 60px;
        /* Réduire la taille des icônes */
    }

    /* Ajuster le placement pour les très petits écrans */
    .footer {
        position: absolute;
        bottom: 5%;
        right: 5%;
        z-index: 2;
    }

    .footer img {
        width: 120px;
        /* Réduire la taille du footer */
    }

    .footer-shape {
        width: 100px;
        /* Réduire considérablement la largeur du bandeau bas */
    }
}

@media (min-width: 2561px) {

    /* Styles pour les écrans plus grands qu'un MacBook 13" (2560px) */
    body {
        background-color: #f0f0f0;
        /* Exemple de changement de fond */
    }

    h1 {
        font-size: 4rem;
        /* Ajuste la taille de la police */
    }

    .buttons {
        gap: 60px;
        /* Augmente l'espace entre les boutons */
    }

    .footer img {
        width: 300px;
        /* Agrandit l'image du pied de page */
    }

    .footer-shape {
        width: 300px;
        /* Réduire considérablement la largeur du bandeau bas */
    }

}