*{
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    max-height: 100vh;
}

:root{
    --gray : #f0f0f0;
    --gray2 : #E7E7E7;
    --mistery : #FFD4FB;
    --optimism : #E8FFFF;
    --affection : #F9E2D5;
    --black : #191919;
    --white : #fff;
    --feely : #EA42CB;
}

@font-face {
    font-family: "Nohemi";
    src: url(./fonts/nohemi-variable.ttf);
}

@font-face {
    font-family: "Dirtyline";
    src: url(./fonts/dirtyline.otf);
}


body, html {
    margin: 0;
    padding: 0;
    background-color: var(--gray);
    color: var(--black);
    font-family: "Nohemi";
}

body{
    background-image: url("./medias/backgroundPoints.png");
    background-repeat: repeat;
}

.nav{
    padding: 0 20px;
    width: 100vw;
    height: 60px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links{
    position: fixed;
    left: 0;
    bottom: 20px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    width: 100vw;
    padding: 0 20px;
    box-sizing: border-box;
}

.links a{
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.links a span{
    margin-top: 2px;
    transition: 0.2s ease-in-out;
    color: var(--black);
}

.links a:hover span{
    color: var(--feely);
}

.links .copyright{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.links .copyright span{
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.links .copyright .line{
    width: 15px;
    height: 2px;
    background-color: var(--black);
}


.handleAudio{
    padding: 8px;
    border: 3px solid var(--black);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.handleAudio:hover{
    background-color: var(--mistery);
}

.handleAudio img{
    height: 20px;
}

.projectName{
    font-size: 1.125rem;
    font-weight: 700;
}

main {
    display: flex !important;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

[data-scroll-container] {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.introduce{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    min-width: 100vw;
}

.loader{
    animation: loader 2s linear;
    opacity: 0;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 15;
    transform: translate(-100vw);
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    color: var(--white);
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

@keyframes loader {
    0%{
        opacity: 1;
        transform: translate(0);
    }60%{
        opacity: 1;
    }100%{
        opacity: 0;
        transform: translate(0);
    }
}

.feely{
    color: var(--feely) ;
    font-family: "Dirtyline";
}

.feelyLoader{
    font-size: 30px;
    margin-bottom: 10px;
}

.title{
    font-family: "Dirtyline";
    font-size: 7rem;
}

.sentence{
    font-size: 1.5rem;
    font-weight: 500;
}

.section {
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    box-sizing: border-box;
    position: relative;
}

.textBackground{
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    font-size: 20rem;
    font-weight: 800;
}

.textBackgroundMistery{
    color: var(--gray2);
    left: 50vw;
}

.textBackgroundOptismism{
    color: var(--gray2);
    left: 40vw;
}

.textBackgroundAffection{
    color: var(--gray2);
    left: 30vw;
}

.wrapperConceptInfos{
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    padding: 100px 10px;
    box-sizing: border-box;
}

.infoConcept{
    font-size: 1rem;
}

.titleConcept{
    font-size: 3.5rem;
}

.loadModels{
    background-color: var(--black);
    display: flex;
    border-radius: 5px;
    padding: 15px 20px;
    border: 0;
    outline: 0;
    color: var(--white);
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    font-family: "Nohemi";
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
}

.loadModels > span{
    margin-top: 2px;
}

.loadModels:hover{
    background-color: var(--white);
    color: var(--black);
}

.loadModels:hover .point{
    background-color: var(--black);
}

.point{
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 50px;
    transition: 0.2s ease-in-out;
}

.wrapperContentModel{
    height: 100%;
    box-sizing: border-box;
    padding: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    align-items: center;
}

.contentModelInfos{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 250px;
}

.type{
    font-size: 20px;
    font-weight: 600;
    font-family: "Dirtyline";
}

.colors, .hexaColors{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}

.colors > div{
    height: 30px;
}

.hexaColors > div{
    height: 20px;
    font-weight: 600;
    font-size: 15px;
}

.colors > div, .hexaColors > div {
    width: calc(50% - 3px);
}

.contentModel {
    width: 400px;
    height: fit-content;
}


.sectionMystery .wrapperContentModel:nth-child(2n), 
.sectionOptimism .wrapperContentModel:nth-child(2n), 
.sectionAffection .wrapperContentModel:nth-child(2n){
    justify-content: flex-start;
}