/*----------------------------------------------BASE-----------------------------------------------*/

body {
  display: flex;
  flex-direction: column; 
    overflow-x: hidden; /* Empêche le défilement horizontal */

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kameron', serif;
    font-style: normal;
}

      /*----------------------------------------------FOOTER-----------------------------------------------*/

#footer {
    width: 99.6vw;
    height: 620px;
    position: relative;

    left: 50%;
    right: 50%;

    margin-left: -50vw;
    margin-right: -50vw;

    background: #0900E0;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 0 20px 0;
    box-sizing: border-box;
    margin-top: 200px;
    margin-bottom: -100px;
}

#div-footer {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#div-footer a {
    margin: 0 auto 16px auto;
}

#attention {
    font-family: 'Kameron', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    text-decoration: underline;
    margin: 8px auto 0 auto;
    color: #ffffff;
    text-align: center;
}


/*----------------------------MEDIA QUERY ---------------------------------*/

@media (max-width: 991px) {
    #footer {
        min-height: 180px;
        padding: 24px 0 12px 0;
    }
    #div-footer {
        max-width: 95vw;
    }
    #attention {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 600px) {
    #footer {
        min-height: 140px;
        padding: 16px 0 8px 0;
    }
    #div-footer {
        max-width: 100vw;
        padding: 0 8px;
    }
    #attention {
        font-size: 16px;
        line-height: 22px;
    }
}

 
 