@font-face {
    font-family: "Luciole";
    src: url("../ressources/fonts/Luciole/Luciole-Regular.woff") format("woff"),
            url("../ressources/fonts/Luciole/Luciole-Regular-Italic.woff") format("woff"),
                url("../ressources/fonts/Luciole/Luciole-Bold.woff") format("woff");

    font-family: "Trickster";
    src: url("../ressources/fonts/Trickster-master/webfonts/Trickster-Regular.woff") format("woff");
   }

body{
    background-color: white;
    padding-left: 2%;
    padding-right: 2%;
    overflow-x: hidden;
    font-size: 1vw;
    padding-top: 45vw;
    font-family: 'Luciole', 'sans-serif';
}

#topButton{
    visibility:hidden;
    background-color: white;
    position: fixed;
    font-family: sans-serif;
    font-size: 2em;
    text-decoration: none;
    color: rgb(7, 4, 107);
    bottom: 5%;
    right: 2%;
    height: 3vw;
    width: 3.3vw;
    text-align: center;
    padding-top: 0.3%;
    border-radius: 25px;
    z-index: 9;
    box-shadow: 3px 5px 10px black;
}

#header{
    background-color: rgb(7, 4, 107);
    z-index: 1;
    margin-left: -4vw;
    position: fixed;
    top: 0;
    width: 110%;
    height: 40vw;
    transition: 0.5s;
    display: flex;
    align-items: stretch;
    box-shadow: 0px -10px 40px black;
}

#nom{
    background-color: none;
    color: white;
    text-decoration: none;
    margin-left: 5vw;
    font-size: 10em;
    flex: 0 1 50vw;
    transition: 0.5s;
    height: 30vw;
    margin-top: 0.8em;
    font-family: 'Trickster',serif;
}

#lien1{
    background-color: none;
    text-decoration: none;
    color: white;
    border-right: solid white 2px;
    font-size: 1.3em;
    text-align: center;
    height: 2vw;
    flex: 0 1 20vw;
    margin-top: 30%;
    transition: 0.5s;
}

#lien2{
    background-color: none;
    text-decoration: none;
    color: white;
    font-size: 1.3em;
    text-align: center;
    height: 2vw;
    flex: 0 1 20vw;
    margin-top: 30%;
    transition: 0.5s;
}

.colonneImages{
    background-color: none;
    display: inline-block;
    flex-direction: column;
    width: 32.5%;
    vertical-align: top;
}

img{
    border-radius: 1%;
    z-index: 9;
    max-height: 100%;
    width: 98%;
    margin: 1%;
    flex: 1;
    filter: grayscale(100) brightness(1.1) invert(95%) ;
    transition: 0.5s;
}

img:hover {
    filter: grayscale(0);
}

footer{
    background-color: rgb(7, 4, 107) ;
    color: white;
    position: relative;
    left: -10vw;
    bottom: -10vw;
    margin-top: 10vh;
    padding-top: 1%;
    padding-bottom: 2%;
    width: 112vw;
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
}

.credits{
    font-size: 0.7em;
    font-style: normal;
}


@media all and (orientation: portrait){

body{
    padding-top: 90vw;
}

#header{
    margin-left: -5vw;
    height: 50vw;
}

#nom{
    background-color: none;
    font-size: 15em;
    height: 10vw;
    margin-top: 3%;
    width: 70vw;
    flex: none;
    position: absolute;
}

#topButton {
    display: none;
}

#lien1{
    background-color: none;
    border-right: solid white 1px;
    display: none;
    font-size: 4em;
    height: 8vw;
    margin-left: 1.5vw;
    flex: 0 1 40vw;
}

#lien2{
    background-color: none;
    font-size: 4em;
    display: none;
    height: 8vw;
    margin-top: 15vh;
    flex: 0 1 55vw;
}

.colonneImages{
    display: inline-block;
    flex-direction: column;
    margin-top: 0%;
    width: 100%;
    vertical-align: top;
}

image{
    filter: grayscale(0) brightness(1) invert(0);
    transition: none;
}

footer{
    margin-top: 50vh;
    font-size: 2em;
}

}