body{
    background: linear-gradient(90deg, #ccc4c4, #4d4545);
}

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

.menu-portable{
    display: none;
}

p{
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;  
}

h1{
    color: #4d4545;
    margin-top: 100px;
    font-size: 50px;
    text-align: center;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;  
}

h2{
    color: #4d4545;
    font-size: 30px;
    text-align: center;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;  
}

.accordeon{
    width: 75%;
    margin-top: 15%;
    margin-left: 11%;
    border-radius: 10px;
    border: #FFFFFF 2px solid;
    grid-row: 1 / 2 ;
}

.a-propos{
    display: grid;
    grid-template-columns: 1 fr 1 fr;
    grid-template-rows: 1 fr 1fr;
}


.reservoir{
    width: 45%;
    margin-left: 26%;
    border-radius: 10px;
    border: #FFFFFF 2px solid;
    grid-row: 2 / 3 ;
    grid-column: 1 / 2;
}

.texte{
    margin-top: 10%;
    margin-right: 5%;
    margin-bottom: 10%;
    font-size: 25px;
    text-align: justify;
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}

p{
    color: black;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;  
}

a{
    color:#ccc4c4;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    text-decoration: none;
    padding-left: 2%;
}

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

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

.maison{
    transition: transform 1s ease-in-out;
    position: relative;
    top: 4px;
    display: inline-block;
}

.maison:hover{
    transform: scale(1.3);
}

.langue-portable{
    display: none;
}

.img-youtube,.img-facebook,.img-soundcloud,.img-linkedin{
    padding-right: 30px;
    padding-top: 5px;
    height: 3%;
    width: 3%;
    transition: filter 2s ease;
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.img-youtube:hover,.img-facebook:hover,.img-soundcloud:hover,.img-linkedin:hover{
    -webkit-filter: grayscale(0);
	filter: grayscale(0);
}


.reseaux{
    width: 100%;
    background-color: #ccc4c4;
    position: fixed;
    bottom: 0%;
    left: 0%;
}

@media screen and (max-width: 500px) {
    .img-youtube,.img-facebook,.img-soundcloud,.img-linkedin{
        height: 7%;
        width: 7%;
    }
    .maison{
        display: none;
    }
    .menu-ordi{
        display: none;
    }
    .a-propos{
        display: block;
    }
    .reservoir{
        margin-bottom: 10%;
    }
    .texte{
        font-size: 20px;
    }
    .menu-portable{
        display: inline-block;
    }
    .maison-portable{
        display: inline-block;
        height: 35px;
    }
    .langue-portable{
        display: inline-block;
        position: relative;
        top: -5px;
    }
}

@media screen and (min-width: 600px) and (max-width: 900px) {
    .img-youtube,.img-facebook,.img-soundcloud,.img-linkedin{
        height: 5%;
        width: 5%;
    }
    .a-propos{
        display: block;
    }
    .reservoir{
        margin-bottom: 10%;
    }
    .texte{
        font-size: 20px;
    }
}

@media screen and (min-width: 950px){
    .img-youtube,.img-facebook,.img-soundcloud,.img-linkedin{
        height: 3%;
        width: 3%;
    }
}


@media screen and (min-width: 1500px){
    .reservoir{
        margin-bottom: 10%;
        margin-top: 10%;
    }
}

@media screen and (min-width: 1600px){
    .reservoir{
        margin-bottom: 10%;
    }
    .texte{
        font-size: 30px;
    }
}

@media screen and (max-width: 1025px){
    .a-propos{
        display: block;
    }
    .texte{
        margin-left: 5%;
    }
    .reservoir{
        margin-bottom: 10%;
    }
}

@media screen and (min-width: 1800px) and (max-width: 2000px){
    .texte{
        font-size: 35px;
    }
}


/* Sidenav menu links */
.sidenav a {
    padding-top: 8px;
    text-decoration: none;
    font-size: 25px;
    /* Changez cette ligne : */
    text-align: center;
    color: #4d4545; /* 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: linear-gradient(90deg, #ccc4c4, #4d4545);
    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;
}





