body{
    background-color: var(--background-color);
}

#left{
    position: fixed;
    height: 100vh;
    width: 50vw;
    top: 0px;
    left: 0px;
    border-right: var(--thread-width) solid var(--thread-color);
}

#head div{
    width: fit-content;
    margin: var(--margin);
}

#head{
    font-family: npk-bold;

    position: absolute;
    height: auto;
    width: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
}

#index{
    margin-top: 10vw;
    font-family: npk-bold;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.projet{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: var(--thread-width) solid var(--thread-color);
}

.projet:last-of-type{
    border-bottom: var(--thread-width) solid var(--thread-color);
}

.projet section{
    margin: var(--margin);
    margin-top: calc(var(--margin)/3);
    margin-bottom: calc(var(--margin)/3);
    text-align: end;
}

.projet-date, .categorie{
    opacity: 50%;
    transition: .1s;
}

.categorie:hover{
    opacity: 100%;
    cursor: pointer;
}

.projet:hover{
    background-color: white;
    cursor: pointer;
}

#right{
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 50vw; 
    border-left: var(--thread-width) solid var(--thread-color);
}

#carroussel{
    overflow: scroll;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 100%;
    transition: .4s;
    background-color: white;
    pointer-events: all;
}

#right::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
 #right {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 0px;
  }

  #hg span:hover{
    text-decoration: underline;
    cursor: pointer;
  }

  #hg span{
    font-family: npk-regular;

  }

  #infos{
    top: 0px;
    left: 0px;
    position: absolute;
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: 1;
    text-align: center;
    font-family: npk-regular;
    transition: .2s;

    backdrop-filter: blur(150px);
    opacity: 0%;
    pointer-events: none;
  }

  .bold{
    font-family: npk-bold;
  }

  #infos a{
    text-decoration: underline;
  }

  #infos a:hover{
    cursor: pointer;
  }