:root{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

body{
    /* background:linear-gradient(#00ccff,#d400d4); */
    background-image: url("../img/fond_ecran.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0;
    padding: 0;
    height:100%;
}


/* POUR LE HEADER QUI EST COMMUN A TOUTES LES PAGES */
.logo_ttp{
    flex-direction: column;
    position: absolute;
    top: 1vh;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    display:flex;
    align-items: center;
}
.con{
    float:right;
    margin-top:4vh;
    z-index: 1;
    position:absolute;
    display: flex;
    right:3%;
}
.con a{
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: 0.5s;
}
.con a:hover{
    color:rgba(0,0,0,1);
    background-color: #fff;
    box-shadow: 0px 1px 1px #888, 0px -2px 10px rgba(255, 255, 255,0.6);
}
.logo_ttp p{
    font-size: 1.5em;
    color: #fff;
    text-align: center;
    font-weight: 700;
    caret-color: transparent;
}
.logo_ttp img{
    position:relative;
    width:6vh;
}
.bar{
    background: rgba(0,0, 0);
    height: 11vh;
    width: 100%;
}

.menu_deroulant{
    width:95%;
    margin: 0 auto;
}

.container_hamburger{
    float:left;
    height:25px;
    width:40px;
    margin-top: 4vh;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
    cursor:pointer;
    z-index: 1000;
}
.menuLogo{
    z-index: 1000;
    height:4px;
    width:30px;
    background-color:snow;
    caret-color: transparent;
}
.menu{
    z-index:10;
    position:relative;
    top: 0;
    background: rgb(0, 0, 0);
    width:30%;
    height:98vh;
    padding-top:10vh;
    transform:translateX(-1000px);
    transition:0.5s

}
.menu li{
    caret-color: transparent;
    z-index: 2;
    list-style-type: none;
    border-bottom: 1px solid snow;
    padding: 27px 8px;
    text-align: start;
}
.menu li:hover {
    background-color: rgba(0,0, 0, 0.8);
}
.showmenu{
    transform:translateX(0);
    padding-left: 7px;
    padding-right: 25px;
}
menu li:last-child{
    border-bottom:none;
}
.menu li a{
    caret-color: transparent;
    color: snow;
    text-decoration:none;
    font-size:20px;
    transition:font-weight 0.2s;
}
.menu li a:hover{
    font-weight:bold;
}

li::marker{
    caret-color: transparent;
    color:rgba(255, 255, 255, 0);
}

@media screen and (min-width:1000px){
    .menu{
        width:300px;
    }
}
@media screen and (min-width:600px){
    .menu{
        font-size:16px;
    }
    
}