html {
  font-size: 10px;
  cursor: url(cursor/cursor.png), auto;
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: url(cursor/cursor.png), auto;
}

/*Scrollbar*/


::-webkit-scrollbar {
  display: none;
  width: 25px;
  padding-left: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgb(240, 240, 240);
  border-radius: 50px;
  border-style: solid;
  border-width: 5px;
  ;
}

::-webkit-scrollbar-track {
  background: rgb(240, 240, 240);
}


/*Font*/

@font-face {
  font-family: Authentic-60;
  src: url(font/AUTHENTICSans-Condensed-60.woff2);
}

@font-face {
  font-family: Authentic-90;
  src: url(font/AUTHENTICSans-Condensed-90.woff2);
}

@font-face {
  font-family: Authentic-130;
  src: url(font/AUTHENTICSans-Condensed-130.woff2);
}

@font-face {
  font-family: Authentic-150;
  src: url(font/AUTHENTICSans-Condensed-150.woff2);
}

/* Split screen*/

.split-screen {
  display: flex;
  height: 100vh;
  overflow: hidden;
}


@media (max-width: 768px) {
  .split-screen {
    overflow: auto;
    flex-direction: column;
  }
}

.left-panel {
  flex: 50%;
  box-sizing: border-box;
  background-color: rgb(240, 240, 240);
  border-right-style: solid;
  border-right-width: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .left-panel {
    display: flex;
    flex:none;
    box-sizing: none;
    border-right-style: none;
    overflow-y: auto;
    overflow-x: auto;
    position: none;
  }
}

.right-panel {
  flex: 50%;
  box-sizing: border-box;
  background-color: #e0e0e0;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .right-panel {
    display: block;
    flex: none;
    box-sizing: none;
    border-right-style: none;
    border-top-style: solid;
    border-width: 4px;
    overflow-y: scroll;
    overflow-x: none;
    z-index:50;
  }
}

.right-panel::-webkit-scrollbar {
  display: none;
}

.right-panel img {
  display: block;
  width: 100%;
  margin: none;
  padding: none;
}


@media (max-width: 768px) {
  .right-panel img {
    width: 100%;
  }
}

/*SVG qui suit la souris sur la partie droite de l'écran*/

#svgCursor {
  display: none;
  position: fixed;
  position: absolute;
  pointer-events: none;
  z-index: 1000;
  width: 190px;
  height: 190px;
}

/*Menu header*/

.header {
  display: flex;
  flex: 10;
  font-family: Authentic-90;
  font-size: 6.5rem;
  padding: 15px;
  justify-content: flex-start;
  /*background: linear-gradient(rgb(240, 240, 240), rgba(255, 0, 0, 0));*/
}
@media (max-width: 768px) {
  .header {
    display: none;
  }
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100
}

.sticky+.description {
  margin-top: 100px;
  padding-top: 155px;
}

.menu {
  display: flex;
  gap: 20px;
  
}

@media (max-width: 768px) {
  .menu {
    gap: 10px;
  }
}

.menu a {
  color: black;
  text-decoration: underline;
  cursor: url(cursor/cursor.png), auto;
}

.menu a:link {
  text-decoration: underline;
}

/*sticky Header spécial mobile */


.header-mobile {
  display: none;
  flex: 10;
  font-family: Authentic-90;
  font-size: 4rem;
  background-color: none;
  padding: 15px;
  justify-content: flex-start;
  font-size: 4em;
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(rgb(240, 240, 240), rgba(255, 0, 0, 0));

}

@media (max-width: 768px) {
  .header-mobile {
    display: flex;
  }
}


/*Les yeux*/

.eyes-container {
  display: flex;
  margin-left: 30px;
  align-items: center;
}

.eye-white {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 55px;
  height: 50px;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  background-color: rgb(240, 240, 240);
  margin-left: -15px;
}

.eye-ball {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
}


.eyes-mobile {
  display: none;
  position: fixed;
  top: 2vh;
  left: 75vw;
  width: 70px;
  z-index: 10;
}

@media (max-width: 768px) {
  .eyes-mobile {
    display: block;
  }
}


/*Description projets*/

.description {
  height: 100vh;
  font-family: Authentic-90;
  font-size: 6.5rem;
  padding: 15px;
}

.description a{
color: black;
text-decoration: underline;
}

@media (max-width: 768px) {
  .description {
    font-size: 4rem;
    padding-top: 20%;
    height: 80%;
  }
}


/* Mots ciblés du paragraphe*/

.vert {
  color: rgb(0, 255, 0);
  text-decoration: underline;
}

.bleu {
  color: rgb(0, 0, 255);
  text-decoration: underline;
}


.rouge {
  color: rgb(255, 0, 0);
  text-decoration: underline;
}



/*Pop-up*/


/* Styles pour le bouton d'ouverture */
#openBtn {
  cursor: url(cursor/cursor.png), auto;
}

/* Styles pour la fenêtre pop-up */
.popup-wrapper {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.popup-content {
  z-index: 1000;
  position: relative;
  background-color: rgb(240, 240, 240);
  width: 60%;
  height: 60%;
  border-style: solid;
  border-width: 5px;
  font-family: Authentic-90;
  font-size: 6.5rem;
  text-align: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 2%;
  padding-right: 2%;
}

@media (max-width: 768px) {
  .popup-content {
    font-size: 4rem;
    width: 100%;
    height: 60%;
    border-width: 4px;
  }
}

.popup-content a:link{
  text-decoration: underline;
  color: black;
}

.popup-content a:visited{
  color: black;
}

.popup-content::-webkit-scrollbar {
  display: none;
}

.popup-content img {
  width: 650px;
  padding: 5%;
}

@media (max-width: 768px) {
  .popup-content img {
    width: 250px;
  }
}

.close-btn img {
  display: none;
}






