body {
    background-image: url('fond/fond.jpg');
    background-repeat: repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'police_principale';
}
@font-face {
    font-family: 'police_principale';
    src: url('police/police_principale.woff') format('woff');
}
.responsive_bar {   /* en ligne + position absolue + espace 20px + couleur de fond spé + largeur 100% */
    display: inline;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.45);
    width: 100%;
    z-index: 150;
    height: 65px;
    top: 0px;
    left: 0px;
}
.responsive_bar button {    /* marge entre eux 12px + fond en darkgrey + bordure de 2px noire + arrondi de 8px + taille 25px + largeur 288px + hauteur 35px */
    margin: 0 12px;
    background-color: rgba(169, 169, 169, 0.368);
    border: 2px solid black;
    border-radius: 8px;
    font-size: 19px;
    width: 230px;
    height: 35px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.logo_veloclub {    /* -2px du haut + position en absolue + a 50px de la droite */
    position: absolute;
    right: 0px;
    float: right;
    top: -8px;
    z-index: 1000;
}
.responsive_bar button:hover {  /* quand survolé = curseur passe en pointeur */
    cursor: pointer;
}
.lien1, .lien2, .lien3, .lien4, .lien5 { /* pas de décoration de texte + écrit en blanc */
    text-decoration: none;
    color: white;
}
.lien1 {
    color: black;
}
.bloc {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.729);
    width: 880px;
    border: 5px solid black;
    left: 350px;
    right: 350px;
    top: 80px;
}
.titre_principal {
    text-align: center;
    text-decoration: underline;
}
.logo_veloclub {
    float: right;
    cursor: pointer;
}
.center {
    text-align: center;
    object-position: center;
}
p, ul, li {
    font-size: 25px;
}
li {
    font-weight: bold;
}
.rendez-vous {
    margin-top: 50px;
}
.habit1, .habit2 {
    margin-top: -150px;
    border: 2px solid black;
}
.menu_hamburger {
    display: none;
}
.departsSaisons {
    list-style: none;
}
.habits figure img {
    width: 700px;
}
.habits {
    margin-top: 70px;
}
.habits h1 {
    margin-bottom: 170px;
}
@media screen and (max-width: 1550px) {
    .responsive_bar button {
        font-size: 17px;
        display: flex;
        flex-direction: row;
        margin-left: 100px;
    }
    .responsive_bar {
        height: 28vh;
    }
    .bloc {
        margin-top: 180px;
    }
}
@media screen and (max-width: 900px) {
    .logo_veloclub {
        display: block;
        position: relative;
        float: left;
        margin-top: 20px;
        margin-left: 15px;
        z-index: 1000;
    }
    .responsive_bar button {
        display: flex;
        flex-direction: column;
    }
    .menu_hamburger {
        display: block;
        position: absolute;
        top: -5px;
        right: -12px;
        z-index: 1000;
    }
    .responsive_bar {
        top: 50px;
        height: 100%;
        width: 100%;
        left: 0px;
        top: 0px;
        backdrop-filter: blur(8px);
        margin-left: -110%;
        transition: all 0.3s ease;
    }
    .responsive_bar.mobile_menu {
        margin-left: 0;
        height: 260vh;
    }
    .responsive_bar button {
        margin: auto;
        margin-top: 25px;
        font-size: 17px;
        width: 200px;
        height: 50px;
        background-color: red;
    }
    .responsive_bar .jour_des_sorties {
        margin-top: 170px;
    }
    .bloc {
        margin: auto;
        left: 20px;
        width: 280px;
    } 
    .habits figure img {
        width: 240px;
        margin: auto;
        margin-top: 50px;
    }
    .habits figure {
        margin: auto;
    }
    .habits {
        text-align: center;
    }
    body {
        background-image: none;
        background: linear-gradient(to right, yellow, red);
    }
    .habits h1 {
        margin-bottom: 10px;
    }
}