html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-image: url(../Images/Commun/fond.png) !important;
    color: white;
}

header, footer {
    background-color: rgba(244, 244, 244, 0.3) !important;;
}

header {
    padding: 10px 0 10px 0;
    text-align: center;
}

header nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

header nav .navInactive p, header nav .navActive p {
    position: relative;
    margin: 0;
}

header nav .navInactive p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.4s;
}

header nav .navInactive p:hover::after {
    width: 100%;
}

header nav .navInactive p.active::after {
    width: 100%;
}

.navActive p {
    border-bottom: 2px solid white;
}


/* ------------------------------------------------------ */

/* Footer */

footer {
    position: fixed;
    text-align: center;
    padding: 10px 0 10px 0;
    bottom: 0;
    width: 100%;
    color: black;
}

footer p {
    margin: 0;
    font-size: 14px;
}