html, body, p, h1, h2, h3, h4, h5, h6, a, a:hover, a:visited, a:focus, ul, figcaption, nav{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-weight: normal;
    color: #FFF;
    font-size: 16px;
    text-align: justify;
}


html{
    background-color: #000;
}

body{
    background-image: url('/img/background.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}


a, a:hover, a:visited, a:focus{
    display: block;
    max-width: fit-content;
    max-height: fit-content;
}

a, a:visited{
    color: #e2f;
}

@keyframes hoverlink {
  5%   {text-decoration-color: #e2f;, color: #e2f;}
  20%  {color: #52ffff;}
  30%  {color: #52ffff;}
  45%  {text-decoration-color: #52ffff;}
  55%  {text-decoration-color: #52ffff;}
  70%  {color: #e2f;}
  80%  {color: #e2f;}
  95%   {text-decoration-color: #e2f;}
}


a:hover {
    animation-name: hoverlink;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    color: #e2f;
}

.imgback{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.tmp{
    margin: 10px auto;
    text-align: center;
}


header{
    border-bottom: 1px solid #fff;
    background-color: #102;
    height: 50px;
}

    header nav{
        line-height: 50px;
        margin: 0 20px;
    }

    header nav div.Home{
        margin: 0 20px;
    }

    header nav ul {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 50px;
        line-height: 50px;
        list-style-type: none;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }

        header nav ul li {
            margin: 0;
            padding: 0 20px;
        }

    header nav a{
        height: 100%;
        width: 100%;
        text-decoration: none;
    }

    header nav a:hover{
        text-decoration: none;
    }

    span.page-actuel{
        font-weight: bold;
    }


footer {
    border-top: 1px solid #FFF;
    margin-top: 100px;
    /*min-height: 250px;*/
    background-color: #000;
}

.footer-tmp{
    color: #0ff;
    text-align: center;
    margin: 10px 0 20px;
}


@media (max-aspect-ratio: 1/1) {

    header {
        height: unset;
    }

    header nav ul {
        flex-direction: column;
        height: unset;
    }
}