body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    height: 100vh; /* Prend toute la hauteur disponible */
    width: 100vw; /* Prend toute la largeur disponible */
}

.box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    border-radius: 0; /* Supprime les coins arrondis */
    transition: background-color 0.3s, transform 0.3s;
}

#archives { background-color: #4A90E2; }
#clients { background-color: #50E3C2; }
#flix { background-color: #FF6900; }
#formations { background-color: #F5A623; }
#ludotheque { background-color: #7ED321; }

.box:hover {
    transform: scale(1.05);
}

#archives:hover { background-color: #357abd; }
#clients:hover { background-color: #39caab; }
#flix:hover { background-color: #e65100; }
#formations:hover { background-color: #d48806; }
#ludotheque:hover { background-color: #689f38; }

/* Media query pour les mobiles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto; /* Prend la hauteur nécessaire */
    }

    .box {
        height: 20vh; /* Ajuste la hauteur des rectangles */
        width: 100%; /* Prend toute la largeur disponible */
    }
}
