/*Début du fichier-----------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Subrayada:wght@400;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap&family=Space+Grotesk:wght@300;400;500;600&family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=SUSE&family=Space+Grotesk:wght@300..700&display=swap&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=SUSE&family=Space+Grotesk:wght@300..700&display=swap');
:root {
    /*Couleurs fond*/
    --clr-black: #010101;
    --clr-white: #EEEEEE;
    --clr-logoBlue: #80B5E3;
    /*Transitions et textes spéciaux*/
    /* --clr-poisonGreen: #37B186; */
    --clr-futuristBlue: #0096DB;
    /* --clr-acidGreen: #D5DA3D; */
    --clr-neonPink: #DD62A1;
    --clr-darkblue: #1052a7;
    --clr-purple: #991599;
    /*Texte*/
    --clr-Argent: #F5F5F5;
    --clr-Grey: #DBDBDB;
    --fw-extrathin: 200;
    --fw-thin: 300;
    --fw-normal: 450;
    --fw-semibold: 550;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
}


/* Animations ! */

@keyframes glowText {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #e0e0e0, 0 0 20px #e0e0e0, 0 0 25px #e0e0e0, 0 0 30px #e0e0e0, 0 0 35px #e0e0e0;
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 15px #ffefe5, 0 0 20px #e0e0e0, 0 0 25px #f0fff7, 0 0 30px #e0e0e0, 0 0 35px #fffae0, 0 0 40px #fffbe4;
    }
}

@keyframes textOpacity {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scroll-slide {
    0% {
        transform: translateX(-1.5rem);
        opacity: 0;
    }
    25% {
        opacity: .33;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: .33;
    }
    100% {
        transform: translateX(1.5rem);
        opacity: 0;
    }
}

@keyframes mail-slide {
    0% {
        transform: translateX(-1.5vw);
        opacity: 0;
    }
    25% {
        opacity: .33;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: .33;
    }
    100% {
        transform: translateX(1.5vw);
        opacity: 0;
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e0e0e0, 0 0 40px #e0e0e0, 0 0 50px #e0e0e0, 0 0 60px #e0e0e0, 0 0 70px #e0e0e0;
    }
    to {
        box-shadow: 0 0 20px #fff, 0 0 30px #a4fff7, 0 0 40px #e0e0e0, 0 0 50px #a4ffcd, 0 0 60px #e0e0e0, 0 0 70px #fff1a4, 0 0 80px #fff1a4;
    }
}

@keyframes spin-me {
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin-me-reverse {
    100% {
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spin-right {
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin-left {
    100% {
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes blink-cursor {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: var(--clr-white);
    }
}

@keyframes slider {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-25%);
    }
}


/* Div de Maintenances ! ----------------------- */

.stripe {
    padding: 2rem .5rem;
    margin: 1rem 0;
    width: 100%;
    background: repeating-linear-gradient( 45deg, #ff0800, #ff0800 10px, #000000 10px, #000000 20px);
}

.maintenance {
    font-weight: var(--fw-black);
    font-size: 2rem;
    color: var(--clr-white);
    margin: 1rem;
}


/* --------------------------------------------- */


/*Mobile First---------------------------------------------------------------------------*/

body,
html {
    background: var(--clr-black);
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: url("/cursor.png"), auto;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 0 0;
}

.slide {
    margin-top: 5vh;
    width: 100%;
    margin: auto;
}

.slide:first-of-type {
    height: 100vh;
}

.inside {
    position: relative;
}


/* Transition colorées ------------------------------------------------------ */

#separation__1,
#separation__2,
#separation__3,
#separation__4,
#separation__5 {
    position: absolute;
    z-index: 3;
    min-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

#separation__1::after,
#separation__1::before,
#separation__2::after,
#separation__2::before,
#separation__3::after,
#separation__3::before,
#separation__4::after,
#separation__4::before,
#separation__5::after,
#separation__5::before {
    content: "";
    position: absolute;
    top: 0;
    height: .25rem;
    width: 17%;
}

#separation__1::after,
#separation__2::after,
#separation__3::after,
#separation__4::after,
#separation__5::after {
    right: 0;
}

#separation__1::before,
#separation__2::before,
#separation__3::before,
#separation__4::before,
#separation__5::before {
    left: 0;
}

#separation__1,
#separation__1::after,
#separation__1::before {
    background-color: var(--clr-Argent);
}

#separation__2,
#separation__2::after,
#separation__2::before {
    background-color: var(--clr-futuristBlue);
}

#separation__3,
#separation__3::after,
#separation__3::before {
    background-color: var(--clr-neonPink);
}

#separation__4,
#separation__4::after,
#separation__4::before {
    background-color: var(--clr-darkblue);
}

#separation__5,
#separation__5::after,
#separation__5::before {
    background-color: var(--clr-purple);
}


/* Texte ------------------------------------------------------------------------------- */

p,
h1,
h2,
h3,
h4,
h5,
q {
    color: var(--clr-white);
    font-family: 'Space Grotesk', 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
    font-weight: var(--fw-thin);
}


em {
    font-style: italic;
}

strong {
    font-weight: var(--fw-semibold);
}

.link {
    color: var(--clr-purple);
    transition: all .25s ease-in-out;
    cursor: url("/pointer.png"), auto;
}

.galerielink {
    color: var(--clr-futuristBlue);
    transition: all .25s ease-in-out;
    cursor: url("/pointer.png"), auto;
}

.clouds{
    position: absolute;
    inset: 0;
    min-width: 100%;
}

.logo {
    position: relative;
    margin: -2rem 0 2rem 0;
    padding: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    background: radial-gradient(circle at top, #78258F, #0B065A, black 70%);
}

h1 {
    display: inline-block;
    text-align: center;
    margin: auto;
}

#Monlogo {
    display: block;
    margin: 10vh auto 0 auto;
    width: 36vw;
    height: 36vw;
}

.canvas {
    display: none;
}

.logoBis {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 3vw 0;
    height: 20vh;
}

#logoDown {
    display: block;
    margin: 0;
    width: 15vh;
    height: 15vh;
    transition: all .5s ease-in-out;
}

#title {
    position: relative;
    font-family: 'Montserrat Subrayada', sans-serif;
    font-size: 10vw;
    color: var(--clr-logoBlue);
}

img[alt] {
    color: var(--clr-white);
    font-family: Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-weight: var(--fw-semibold);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.divQuote {
    padding: 0 2rem;
    display: block;
    margin: 18vh auto;
}

.citation {
    display: block;
    margin: 1rem auto;
    font-style: italic;
    line-height: 120%;
}

.Tolkien {
    text-align: right;
    color: var(--clr-futuristBlue);
    font-weight: var(--fw-normal);
    font-family: 'Crimson Text',"Spectral", 'Times New Roman', Times, serif;
    font-style: italic;
}

.text {
    padding: 0 2rem;
    display: block;
    margin: 2rem auto;
    text-align: justify;
}

.backgroundTitle {
    position: absolute;
    left: 0;
    top: 1rem;
    display: inline-block;
    z-index: 3;
    background-color: #1e1e1eca;
    padding: 0.6rem;
    border-radius: 0 10px 10px 0;
}

h2 {
    font-size: 1.5rem;
    font-weight: var(--fw-normal);
    text-transform: uppercase;
}

#Section1,
#Section2,
#Section3,
#Section4,
#Section5 {
    font-size: 2rem;
}

#Section1 {
    text-shadow: -2px 2px 0 var(--clr-black);
}

#Section2 {
    text-shadow: -2px 2px 0 var(--clr-futuristBlue);
}

#Section3 {
    text-shadow: -2px 2px 0 var(--clr-neonPink);
}

#Section4 {
    text-shadow: -2px 2px 0 var(--clr-darkblue);
}

#Section5 {
    text-shadow: -2px 2px 0 var(--clr-purple);
}

hr {
    width: 70%;
    margin: 2rem auto;
}

.intertitre {
    position: relative;
    color: var(--clr-black);
    font-weight: var(--fw-normal);
    width: 100%;
    margin: 1rem 0;
    font-size: 2rem;
    font-family: 'Crimson Text', "Spectral", 'Times New Roman', Times, serif;
    font-style: italic;
}

.intertitre::after {
    content: "";
    background-color: var(--clr-black);
    display: block;
    position: absolute;
    width: 8.5vw;
    height: 2px;
    left: 0;
}

.contacTitle,
.skillTitle {
    font-weight: var(--fw-bold);
    font-size: 2.5rem;
    margin: 1.5rem;
}


/*Flêche de scroll --------------------------------------------------------------------------------------------------- */

.invitation {
    margin-top: 8vh;
    margin-bottom: 10vh;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.scroll {
    font-family: 'Space Grotesk', 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
    text-align: center;
    font-weight: var(--fw-normal);
    font-size: 4vh;
    color: var(--clr-white);
    text-transform: uppercase;
    animation: textOpacity 5s ease-in-out infinite;
}

.linkArrow,
.mailArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: .22rem solid var(--clr-white);
    border-radius: 100%;
    transform: rotate(90deg) translateX(2vh);
}

.scroll-arrow {
    display: inline-block;
    padding: 1rem .825rem;
    animation: scroll-slide 1s ease-in-out infinite;
}

.scroll-arrow__bar,
.scroll-arrow__bar2,
.mail-arrow__bar,
.mail-arrow__bar2 {
    display: block;
    width: 1.5rem;
    height: 0.22rem;
    background: var(--clr-white);
    border-radius: 3px;
    z-index: 2;
    transform-origin: center;
}

.scroll-arrow__bar,
.mail-arrow__bar {
    margin-bottom: 0.7rem;
    transform: rotate(45deg);
}

.scroll-arrow__bar2,
.mail-arrow__bar2 {
    margin-top: 0.7rem;
    transform: rotate(-45deg);
}

.systeme_nav {
    display: none;
}


/*Menu burger----------------------------------------------------------------------------*/

#menuToggle {
    display: block;
    position: fixed;
    top: 5vw;
    right: 5vw;
    z-index: 3;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: var(--clr-white);
    font-weight: var(--fw-bold);
    transition: color 0.3s ease;
}

#menuToggle input {
    display: block;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    cursor: url("/pointer.png"), auto;
    opacity: 0;
    z-index: 4;
}

#menuToggle span {
    display: block;
    width: 2rem;
    height: 0.25rem;
    margin-bottom: 0.27rem;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 3;
    transform-origin: 0.25rem 0rem;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}


/* Animation pour transformer le bouton burger en croix*/

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: var(--clr-futuristBlue);
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: fixed;
    right: 0;
    top: 0;
    margin-top: 0;
    padding-top: 8vh;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    list-style-type: none;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transform: translateX(100%);
}

#menu li {
    padding: 2rem 0;
    font-size: 22px;
    text-align: center;
    font-family: 'Space Grotesk', 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
    font-weight: var(--fw-extrathin);
    text-transform: uppercase;
    letter-spacing: 4px;
}

#menu li:first-of-type {
    margin-top: 2rem;
}

#menuToggle input:checked~ul {
    transform: none;
}


/*Fin menu burger----------------------------------------------------------------------------*/

.nom {
    color: var(--clr-black);
    font-weight: var(--fw-bold);
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

.whitebox {
    display: inline-block;
    background-color: var(--clr-white);
    padding: 2.5rem;
}

.text-black {
    color: var(--clr-black);
    text-align: justify;
    font-weight: var(--fw-normal);
    font-size: 1rem;
    line-height: 150%;
}

.text-black::first-letter {
    float: left;
    margin: 0.1rem;
    font-size: 2.4rem;
    font-weight: var(--fw-extrabold);
}

.synopsis {
    color: var(--clr-black);
    text-align: center;
    margin: 1rem 0;
    font-family: 'Crimson Text', "Spectral", 'Times New Roman', Times, serif;
    font-size: 2rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
}


/*Effets de luminosité qui varie---------------------------------------------------------*/

.glow {
    display: inline-block;
    margin: auto;
    width: 10vw;
    height: 10vw;
    border-radius: 100%;
    background: var(--clr-white);
    animation: glow 1s ease-in-out infinite alternate;
}


/* Ma Présentation ------------------------------------------- */

.headerWho {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}

.spanWho {
    position: relative;
    width: 4vw;
    height: 2px;
    background: var(--clr-white);
}

.spanWho::before {
    content: "";
    position: absolute;
    top: -.2rem;
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    background: var(--clr-white);
}

.spanWho:first-of-type::before {
    right: -1rem;
}

.spanWho:last-of-type::before {
    left: -1rem;
}

.rotateCircle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 8.5rem;
    height: 8.5rem;
    background: url(/Images/Illustrations/CercleLogo.svg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100%;
    margin: 3rem auto;
    animation: spin-me 20s linear infinite;
}

.rotateCircle::before,
.rotateCircle::after {
    content: "";
    position: absolute;
    border: 2px var(--clr-white) double;
    width: 5%;
    height: 5%;
    transition: all .3s ease-in-out;
}

.rotateCircle::before {
    inset: 3%;
}

.rotateCircle::after {
    inset: 90%;
}

.me {
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    border: 1.5px var(--clr-Argent) solid;
    border-radius: 100%;
    animation: spin-me-reverse 20s linear infinite;
}


/* Images de planètes --------------------------------------------------------------------------------------- */

#Ilhende,
#Vanuis,
#Fyra,
#Barator,
#Ayastri {
    position: absolute;
    z-index: 2;
    max-width: 10rem;
    max-height: 10rem;
    margin: 0;
    padding: 0;
}

#Ilhende {
    right: -2rem;
    bottom: -2rem;
}

#Vanuis,
#Fyra,
#Ayastri {
    top: -2rem;
    left: -2rem;
}

#Barator {
    bottom: -2rem;
    left: -2rem;
    filter: grayscale(1);
    transition: all 0.25s ease-in-out;
    cursor: url("/pointer.png"), auto;
}


/*Templates---------------------------------------------------------------------------------------------------*/

.galerie,
.personnages {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 1rem;
}

.filters {
    position: relative;
    margin: 1.5rem auto;
    width: 100%;
    min-height: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background: var(--clr-white);
    z-index: 2;
}

.filters_items {
    position: relative;
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    padding: .5rem .5rem;
    margin: 1rem 0;
    color: var(--clr-black);
    text-transform: uppercase;
}

.filters_items::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
}


/*Galerie------------------------------------------------------------------------------*/

.galerie__container {
    margin: 1rem 0;
    width: 90%;
    border-bottom: 2px solid var(--clr-Argent);
}

.galerie_texte,
.personnage_texte {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 100%;
    margin: 1rem 0;
}

.galerie_nom,
.personnage_nom {
    font-size: 1.5rem;
}

.galerie_dateReal,
.personnage_age {
    font-size: 1.2rem;
}

.galerie_nom,
.galerie_dateReal,
.personnage_nom,
.personnage_age {
    font-weight: var(--fw-semibold);
    margin-bottom: .5rem;
}

.galerie_nom {
    color: var(--clr-futuristBlue);
}

.galerie_image {
    display: block;
    max-width: 20rem;
    max-height: 11.25rem;
    margin: auto;
}

.galerie_info,
.personnage_bio {
    display: inline-block;
    text-align: justify;
    margin-bottom: 4vh;
    font-size: .8rem;
    font-weight: var(--fw-normal);
    line-height: 130%;
}

.galerie_info {
    width: 100%;
}


/*Personnage------------------------------------------------------------------------------*/

.perso__container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}

.spoiler {
    position: relative;
    text-transform: uppercase;
    font-family: 'Space Grotesk', 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
    color: var(--clr-Argent);
    font-size: 1.5rem;
    background: #000;
    border: none;
    border-radius: 25px;
    cursor: url("/pointer.png"), auto;
    margin: 0 auto;
    width: 30%;
    transition: all .5s ease-in-out;
}

.spoiler::before,
.spoiler::after {
    position: absolute;
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    background: var(--clr-Argent);
    opacity: 0;
    transition: all .5s ease-in-out;
}

.spoiler::before {
    top: -20px;
    left: 50%;
}

.spoiler::after {
    bottom: -20px;
    left: 50%;
}

.Part {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.gousset {
    display: block;
    padding: 0;
    margin: 0;
    max-width: 50%;
}

.gousset[alt] {
    margin: 0;
}

.personnage_container {
    margin: 2rem 0;
    min-height: 28rem;
    max-height: 35rem;
    overflow: hidden;
    border-bottom: 2px dashed var(--clr-Argent);
}

.personnage_nom {
    position: relative;
    font-family: 'Crimson Text', "Spectral", 'Times New Roman', Times, serif;
    font-style: italic;
    color: var(--clr-white);
    transition: all .25s ease-in-out;
}

.personnage_nom::after {
    content: "";
    background-color: var(--clr-white);
    display: block;
    position: absolute;
    width: 4vw;
    height: 2px;
    left: 0;
    bottom: -.2rem;
}

.personnageID {
    margin-top: 4rem;
    position: relative;
    padding: .5rem;
    height: fit-content;
    width: fit-content;
}

.personnage_bio {
    position: relative;
    width: 70%;
    z-index: 2;
}

.personnage_image {
    display: inline-block;
    position: absolute;
    z-index: 1;
    max-height: 22.5rem;
    max-width: none;
    right: -3rem;
    top: 0rem;
    opacity: .3;
    transition: all .25s ease-in-out;
}

.personnage_image[alt] {
    margin: 0;
}


/* CV */

.CV {
    text-align: center;
    margin: auto;
    font-size: 1rem;
    font-weight: var(--fw-semibold);
}

.slider__container {
    position: relative;
    overflow-x: hidden;
    margin: 2rem auto;
    border-radius: 15px;
    padding: 1rem .5rem;
    width: 95%;
    background: var(--clr-black);
}

.slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    animation: slider 6s linear infinite alternate;
}


.soft_logo {
    width: 2rem;
    height: 2rem;
    margin: 0 .5rem 0 .5rem;
    cursor: url("/pointer.png"), auto;
    transition: all .3s ease-in-out;
}


/*Social-----------------------------------------------------------------------------------*/

.socialGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5rem 0px;
    grid-auto-flow: row;
    grid-template-areas: ". . ." ". . ." ". . .";
    justify-content: space-evenly;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.socialGrid a {
    cursor: url("/pointer.png"), auto;
}

.social__icon {
    width: 2.5rem;
    height: 2.5rem;
    transition: all .3s ease-in-out;
    /* cursor: url("/pointer.png"), auto; */
}


/* Contact ----------------------------------------------------------------------------------- */

.contact {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.contactContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-white);
    width: 60vw;
    min-height: 15vw;
    padding: 2rem;
    border-radius: 0 15px 0 15px;
    margin: 2rem auto;
    text-align: center;
}

.contact p {
    color: var(--clr-black);
    font-size: 3vw;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
}

.link_purple {
    font-size: 2vw;
    margin-top: 3rem;
    color: var(--clr-purple);
    transition: all .25s ease-in-out;
    cursor: url("/pointer.png"), auto;
}

.email {
    width: 8vw;
    height: 8vw;
    cursor: url("/pointer.png"), auto;
}

.mail-arrow {
    display: inline-block;
    padding: 1rem .825rem;
    animation: mail-slide 1s ease-in-out infinite;
}

.mailArrow {
    border: none;
}

.mail-arrow__bar,
.mail-arrow__bar2 {
    background: var(--clr-black);
}


/* Mentions légales -------------------------------------------------------------------------- */

.mTitle {
    margin: 1rem;
}

.mentions {
    padding: 1rem;
    line-height: .5rem;
}

.mentions {
    background: var(--clr-white);
    display: none;
}

.show {
    display: block;
}

.mymentions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 1rem;
    line-height: .7rem;
}

.mymentions>small {
    color: var(--clr-white);
    font-family: 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
    font-size: .6rem;
}

.mentions-button {
    position: relative;
    color: var(--clr-Argent);
    text-transform: uppercase;
    width: 15rem;
    height: 3rem;
    margin: 1.5rem auto;
    background: var(--clr-purple);
    border: none;
    transition: all .25s ease-in-out;
    cursor: url("/pointer.png"), auto;
}

.mentions-button::after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid var(--clr-neonPink);
    opacity: 1;
    transition: all .25s ease-in-out;
}

.mentions>small{
    font-family: 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
}

.mentions>h6{
    font-family: 'Crimson Text', "Spectral", 'Times New Roman', Times, serif;
}

/* Fin des mentions ------------------------------------------------------------------ */

b,
h6 {
    font-weight: var(--fw-bold);
}

h6 {
    font-size: .6rem;
    margin: .3rem 0;
}

small {
    font-size: .4rem;
    text-align: justify;
}

ol>li {
    font-size: .4rem;
}


/*Tablettes------------------------------------------------------------------------------*/

@media all and (min-width:820px) {
    .slide:first-of-type {
        height: auto;
    }
    /*Code scroll vertical classique*/
    .navigation {
        display: none;
    }
    .logo {
        margin-top: -3.5vw;
    }
    #MonLogo {
        margin-top: 5vw;
    }
    #title {
        font-size: 5vw;
        transition: all .3s ease-in-out;
    }
    .invitation {
        display: none;
    }
    .citation {
        font-size: 2.5rem;
    }
    .Tolkien {
        font-size: 2rem;
    }
    /*Carte de Navigation-----------------------------------------------------------------------------------
    --------------------------------------------------------------------------------------------------------
    --------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------*/
    .systeme_nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: left;
        margin-bottom: 2rem;
        padding: 0 2rem;
    }
    #circle-orbit-container {
        position: relative;
        height: 100vh;
        width: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #first-orbit,
    #second-orbit,
    #third-orbit,
    #fourth-orbit {
        position: absolute;
        border: 3px var(--clr-white) double;
        border-radius: 100%;
    }

    #third-orbit {
        border: 3px var(--clr-white) dashed;
    }
    .first-orbit-circles,
    .second-orbit-circles,
    .third-orbit-circles,
    .fourth-orbit-circles {
        position: absolute;
        height: 2rem;
        width: 2rem;
        border-radius: 100%;
        transition: all .3s ease-in-out;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        cursor: url("/pointer.png"), auto;
    }
    .first-orbit-circles[alt],
    .second-orbit-circles[alt],
    .third-orbit-circles[alt],
    .fourth-orbit-circles[alt] {
        margin: 0;
    }
    /*Trou noir -----------------------------------------------------------------------*/
    #static-one {
        position: absolute;
        width: 3rem;
        height: 3rem;
        border-radius: 100%;
    }
    .static-one-planet {
        position: absolute;
        top: .55rem;
        left: .5rem;
        height: 2rem;
        width: 2rem;
        border-radius: 100%;
        background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 1) 100%);
        animation: glow 1s ease-in-out infinite alternate;
        transition: all .3s ease-in-out;
        cursor: url("/pointer.png"), auto;
    }
    /*Première planète -----------------------------------------------------------------------*/
    #first-orbit {
        width: 8rem;
        height: 8rem;
        animation: spin-right 20s linear infinite;
    }
    .first-orbit-circles {
        background-image: url("/Images/Planete/Vanuïs.png");
        background-color: var(--clr-futuristBlue);
        top: 75px;
        left: -10px;
        border: 1.5px solid var(--clr-futuristBlue);
        box-shadow: 0px 0px 20px var(--clr-futuristBlue);
    }
    /*Deuxième planète -----------------------------------------------------------------------*/
    #second-orbit {
        width: 15rem;
        height: 15rem;
        animation: spin-right 35s linear infinite;
    }
    .second-orbit-circles {
        background-image: url("/Images/Planete/Fyra.png");
        background-color: var(--clr-neonPink);
        top: 15px;
        left: 20px;
        border: 1.5px solid var(--clr-neonPink);
        box-shadow: 0px 0px 20px var(--clr-neonPink);
    }
    /*Troisième planète -----------------------------------------------------------------------*/
    #third-orbit {
        width: 25rem;
        height: 25rem;
        animation: spin-left 50s linear infinite;
    }
    .third-orbit-circles {
        background-image: url("/Images/Planete/Barator.png");
        background-color: var(--clr-darkblue);
        top: -16px;
        left: 205px;
        border: 1.5px solid var(--clr-darkblue);
        box-shadow: 0px 0px 20px var(--clr-darkblue);
    }
    /*Quatrième planète -----------------------------------------------------------------------*/
    #fourth-orbit {
        width: 35rem;
        height: 35rem;
        animation: spin-right 70s linear infinite;
    }
    .fourth-orbit-circles {
        background-image: url("/Images/Planete/Ayastri.png");
        background-color: var(--clr-purple);
        top: 105px;
        left: 30px;
        border: 1.5px solid var(--clr-purple);
        box-shadow: 0px 0px 20px var(--clr-purple);
    }
    /*Système de texte ----------------------------------------------------------------*/
    .destination {
        position: relative;
        display: inline-block;
        height: 70vh;
        width: 100vh;
    }
    .sf_text,
    .hover_text {
        color: var(--clr-white);
        text-transform: uppercase;
        font-family: 'Space Grotesk', 'Atkinson Hyperlegible', 'Montserrat', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, sans-serif;
        font-weight: var(--fw-semibold);
        font-size: 3.5vw;
    }
    .hover_text {
        margin-top: 3rem;
        margin-right: 3rem;
        font-size: 3vw;
        text-align: right;
        padding-right: 1rem;
        border-right: .15em solid var(--clr-futuristBlue);
        text-shadow: 4px 4px 0 var(--clr-purple);
        animation: blink-cursor .75s step-end infinite;
    }
    .hover_description {
        position: relative;
        width: 90%;
        margin-top: 5rem;
        padding: 1rem .5rem;
        font-size: 1.3vw;
        line-height: 1.5;
        text-align: justify;
        border-top: 1px solid var(--clr-white);
        border-bottom: 1px solid var(--clr-white);
    }
    .backgroundTitle {
        top: 1.5rem;
    }
    #Section1,
    #Section2,
    #Section3,
    #Section4,
    #Section5 {
        font-size: 3rem;
    }
    .synopsis {
        font-size: 3rem;
    }
    .logoBis {
        margin: 5vw;
    }
    #logoDown {
        width: 8vw;
        height: 8vw;
        cursor: url("/pointer.png"), auto;
    }
    /* Templating */
    .personnage_container {
        width: 40%;
    }
    .text-black {
        font-size: 1rem;
    }
    .text-black::first-letter {
        font-size: 4rem;
    }
    #Ilhende,
    #Vanuis,
    #Fyra,
    #Barator,
    #Ayastri {
        max-width: 25rem;
        max-height: 25rem;
    }
    #Ilhende {
        right: -5rem;
        bottom: -5rem;
    }
    #Vanuis,
    #Fyra,
    #Ayastri {
        top: -5rem;
        left: -5rem;
    }
    #Barator {
        bottom: -5rem;
        left: -5rem;
    }
    .soft_logo {
        width: 5rem;
        height: 5rem;
        margin: 0 1rem 0 1rem;
        cursor: url("/pointer.png"), auto;
        transition: all .3s ease-in-out;
    }

}


/*Desktop--------------------------------------------------------------------------------*/

@media all and (min-width:1024px) {
    .canvas {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    .text-black {
        line-height: 1.5rem;
    }
    .filters_items {
        cursor: url("/pointer.png"), auto;
        font-size: 1.5rem;
    }
    .filters_items::after {
        width: 0;
        transition: width .3s;
    }
    .galerie_box {
        display: flex;
        padding: 0 1rem;
        margin-bottom: 1rem;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-evenly;
    }
    .galerie_image {
        max-width: 30rem;
        max-height: 16.875rem;
        filter: saturate(1);
        transition: all .5s ease-in-out;
    }
    .galerie_info {
        display: inline-block;
        margin: 0 auto;
        font-size: 1rem;
        width: 50%;
    }
    .backgroundTitle {
        top: 2.25rem;
    }
    #Section1,
    #Section2,
    #Section3,
    #Section4,
    #Section5 {
        font-size: 4.5rem;
    }
    .me {
        width: 10rem;
        height: 10rem;
        transition: box-shadow .5s ease-in-out;
    }
    .rotateCircle {
        margin-top: -1rem;
        width: 11rem;
        height: 11rem;
    }
    /* HOVER !!! */
    .galerielink:hover {
        color: var(--clr-Argent);
    }
    #Barator:hover {
        filter: grayscale(0);
    }
    .spoiler:hover {
        background: var(--clr-Argent);
        color: #000;
    }
    .spoiler:hover::after,
    .spoiler:hover::before {
        opacity: 1;
    }
    .mentions-button:hover::after {
        transform: scaleX(1.1) scaleY(1.5);
    }
    #title:hover {
        color: var(--clr-Argent);
    }
    .filters_items:hover:after {
        width: 100%;
    }
    .galerie_image:hover {
        filter: saturate(0);
    }
    .personnage_container:hover .personnage_nom {
        color: var(--clr-neonPink);
    }
    .personnage_container:hover .personnage_image {
        opacity: 1;
    }
    .first-orbit-circles:hover,
    .second-orbit-circles:hover,
    .third-orbit-circles:hover,
    .fourth-orbit-circles:hover,
    .static-one-planet:hover {
        transform: scale(2);
    }
    .soft_logo {
        width: 7rem;
        height: 7rem;
        margin: 0 2rem 0 2rem;
        cursor: url("/pointer.png"), auto;
        transition: all .3s ease-in-out;
    }
    .soft_logo:hover{
        width: 9rem;
        height: 9rem;
    }
    .social__icon:hover {
        transform: scale(2);
    }
    #logoDown:hover {
        transform: scale(1.5);
    }
    .rotateCircle:hover .me {
        box-shadow: 0px 0px 1rem var(--clr-Argent);
    }
    .link:hover,
    .link_purple:hover {
        color: var(--clr-futuristBlue);
    }
}