a{
    text-decoration: none;
    color: black;
    font-size: 23px;
    margin-right: 30px;
    margin-top: 5px;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

h1{
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

p{
    text-align: justify;
    font-size: 24px;
    margin-left: 50px;
    margin-right: 50px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.premier-h1{
    margin-top: 90px;
}


.menu{
    z-index: 100;
    position: fixed;
    text-align: end;
    top: 0%;
    right: 0%;
    width: 100%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-right: 4%;
    background-color: #00787E;
}

.logo-header{
    width: 5%;
    position: absolute; 
    left: 75px;         
    top: 10px;   
}

.bouton-téléchargement{
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 25px;
    background-color: #00787E;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
    display: block; /* Modifié de 'inline-block' à 'block' */
    margin: 0 auto; /* Ajouté pour centrer l'élément de bloc */
}

.bouton-téléchargement:hover{
    transform: scale(1.05);
}

.btn-telechargement{
    text-align: center;
}

.titre-couleur{
    background-color: #00787E;
}

.coul{
    background-color: #F2F2F2;
}

td, th{
    border: solid 1px black;
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

table{
    border-collapse: collapse;
    margin: 0 auto;
    width: 75%;
}

.téléchargement{
    text-align: center;
    display: flex;
    flex-direction: column; /* Organise les éléments les uns au-dessus des autres */
    align-items: center; /* Centre les éléments horizontalement */
}


.tableau-portable{
    display: none;
}

.menu-portable{
    display: none;
}

.menu-ordi{
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

.menu-ordi:hover{
    transform: scale(1.3);
}



@media screen and (max-width: 600px) {
    .menu-portable{
        display: inline;
        position: absolute;
        right: -10px;
        top: -0.5px;
    }
    .menu-ordi{
        display: none;
    }
    .menu-portable{
        display: inline-block;
    }
    .maison-portable{
        display: inline-block;
        height: 35px;
    }
    .maison{
        display: none;
    }
    .table-container {
    overflow-x: auto;
    }
    table, th, td {
    display: block;
    }
    p{
        margin-left: 10px;
        margin-right: 10px;
        font-size: 18px;
    }
    .tableau-portable{
        display: inline-block;
    }
    .titre-portable-cache{
        display: none;
    }
    table{
        display: none;
    }
    .logo-header{
        display: none;
    }
}


/* Sidenav menu links */
.sidenav a {
    padding-top: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 25px;
    /* Changez cette ligne : */
    color: black; /* Texte du menu visible sur le fond #ccc4c4 */
    display: block;
    transition: 0.3s;
}
    

/* Sidenav menu */
/* Sidenav menu */
.sidenav {
    height: 100%;
     width: 250px;
    position: fixed;
    z-index: 1000;
    top: 0;
    /* Modifiez cette ligne : */
    right: -250px; /* Initialement hors de l'écran à droite */
    /* Supprimez ou commentez cette ligne : */
    /* left: -250px; */ 
    background-color: #00787E;
    padding-top: 70px;
    /* Modifiez cette ligne : */
    transition: right 0.5s ease; /* Transitionne la propriété 'right' */
}
.sidenav.active {
 /* Modifiez cette ligne : */
 right: 0; /* Glisse pour être visible depuis la droite */
 /* Supprimez ou commentez cette ligne : */
 /* left: 0; */
}

.sidenav ul {
list-style-type: none;
padding: 0;
margin: 0;
}

/* Close btn */
.sidenav .close {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
}


