html, body {
    background-color: #d9d9d9;
    font-family: 'Mochiy Pop One', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

/*_HEADER_________________________________________________________________*/
.header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;

    width: 100%;
    height: 7%;
    z-index: 1;

    background-color: black;
}

#header2 {
    margin-left: auto;
    margin-right: auto;
    width: 1200px;

    display: flex;
}

#index {
    height: 100%;
    z-index: 2;
}

#content_bouton_header {
    display: flex;
    width: 100%;
}

.button_header {
    color: white;
    font-size: 1.3vh;
    background-color: black;
    border: white;
    margin: 0;

    width: 25%;
    height: 100%
}


/*_CONTENT_________________________________________________________________*/
#content {
    position: relative;
    margin: 0 auto;
    margin-bottom: 80px;
    top: 7%;

    background-color: white;

    max-width: 1200px;
    min-height: 93%;
}



/*_FOOTER___________________________________________________________________*/
.footer {
    position: absolute;
    bottom: 0; left: 0;

    width: 100%;
    height: 80px;

    background-color: black;
    color: white;
}

#copyright {
    position: absolute;
    margin: 20px;
    bottom: 0;
    right: 0;
}

