html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #253bb8;
    background-image: url(images/fond-page-2.png);
    font-family: sans-serif;
    display: flex;
    flex-direction: row;
    color: white;
}



/* --------------------------- */
/* --------- Header --------- */
/* ------------------------- */


h1 {
    letter-spacing: 4px;
    text-shadow: -5px 0 3px #7388ff;
    margin-right: 80px;
    color: rgba(255, 255, 255, 0.87);
}

.main-informations {
    position: relative;
    z-index: 2;
    background-color: #253bb8;
    box-shadow: 100px 0px 50px #253bb8;
    font-size: 1.25em;
    padding: 20px;
    display: block;
}

.main-informations:before {
    content:"";
    z-index: -1;
    position:absolute;
    top: -50px;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: #253bb8;
    box-shadow: 40px 0px 60px #253bb8;
}



/* ------------------------------- */
/* --------- Navigation --------- */
/* ----------------------------- */




h4 {
    color: #acb8ff;
    text-decoration: underline;
}

ul li a {
    color: #6470b8;
    display: block;
}

ul li a:hover {
   color: #acb8ff;
}

.inprogress h4, .inprogress ul li a{
    color: rgb(179, 179, 179)
}



/* --------------------------- */
/* --------- Content -------- */
/* ------------------------- */



h5 {
    width: 100%;
    margin: 1em;
    text-decoration: underline;
    letter-spacing: 2px;
    color: #acb8ff;;
    text-shadow: -5px 0 3px #5e75f8;
}

.gallery {
    position: relative;
    left: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5%;
    font-size: 1.75em;
}

.gallery div {
    margin: 20px;
    width: 26%;
    height: auto;
}

.gallery div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* --------------------------- */
/* --------- Footer --------- */
/* ------------------------- */



footer {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.75em;
    border-radius: 50px;
    padding: 2em;
    width: 80%;
    letter-spacing: 2px;
}

footer #english {
    text-align: left;
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
    );
}

footer #french {
    text-align: right;
    background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.4) 100%
    );
}