html, body {
    width:100%;
    min-width:100%;
}

/* Style pour le body */
body {
    display:block;
    unicode-bidi: isolate;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Style pour les titres h2 */
h2 {
    font-family: K2D;
    font-size: 5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgb(211, 211, 211);
    color: rgb(124, 124, 124);
    margin-top: 2em;
}


/* Main */
main {
    justify-self: center;
    padding : 2em 2em 2em 2em;
    width: 80%;
    max-width: 80%;
    background-color: rgb(236, 235, 235);
    border: 4px solid black;
}

/* Horaires */
#sec-Horaires {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color:#ccc ;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    color: #333;
    padding: 2rem 5%;
    margin: 20px;
    flex-wrap: wrap;
    transition: transform 0.7s ease;
}

#sec-Horaires:hover {
    transform: scale(1.025);
}

.div-jours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d4d4d4;
    padding: 2em;
}

.jours {
    font-size: 3em;
}

.heures {
    font-size: 2em;
}

.activités {
    font-size: 1.8em;
}
/* Fin horaires */

/* Adresse */
#sec-Adresse {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color:#ccc ;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    color: #333;
    padding: 1em;
    flex-wrap: wrap;
    transition: transform 0.7s ease;
}

#sec-Adresse:hover {
    transform: scale(1.025);
}

#div-Adresse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #c2c2c2;
    margin: 1em;
    padding: 2em;
    border-radius: 20px;

    width: 80%;
}

#adresse-texte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-family: 'Arial', sans-serif;
    font-size: 2em;
}

#google-Map {
    margin: 1em;
    text-decoration: none;
}
#adresse-map {
    border: 5px solid rgb(42, 175, 42);
    transition: transform 0.7s ease;
    width: 75%;
    height: 60vh;
}

#adresse-map:hover {
    transform: scale(1.04);
}
/* Fin adresses*/

/* Lien utiles */
#Titre-liens-utiles {
    font-family: Arial, sans-serif;
    font-size: 3em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgb(211, 211, 211);
    color: rgb(124, 124, 124);
    margin-top: 2em;
}
#div-Liens2 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color:#ccc ;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    color: #333;
    padding: 2rem 5%;
    margin: 20px;
    flex-wrap: wrap;
    transition: transform 0.7s ease;
}

#div-Liens:hover {
    transform: scale(1.025);
}

.a-liens {
    color: blue;
}

.liens-ab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background-color: #ccc;
    border-radius: 9px;
    transition: transform 0.7s ease;
}

.liens-ab:hover {
    transform: scale(1.08);
}
/* Fin liens utiles */