@font-face {
  font-family: 'Archivo-Medium';
  src: url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-Medium.woff2') format('woff2'),
       url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-Medium.woff') format('woff'),
       url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Archivo-LightItalic';
  src: url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-LightItalic.woff2') format('woff2'),
       url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-LightItalic.woff') format('woff'),
       url('../../../../fonts/Archivo_Complete/Fonts/WEB/fonts/Archivo-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}


body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; 
  color: black; 
  font-family: 'Archivo-Medium';
  font-size: 0.9rem;
  overflow-x: auto;
  overflow-y: scroll;
}




/*Desktop*/

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.cursor {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: white;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.2s ease;
}

.scrollCursor {
  position: absolute;
  pointer-events: none;
  color: white;
  mix-blend-mode: difference;
  z-index: 9999;
  display: none;
}

.menuContainer, .whatContainer, .whereContainer, .contactContainer ,.creditsContainer, .projectsContainer, .infoContainer {
  display: flex;
  flex-direction: column;
  position: fixed;
/*  border: 1px solid red;*/
  mix-blend-mode: difference;
}

.creditsContainer, .projectsContainer, .infoContainer {
  font-size: 0.75rem;
}

.infoContainer {
  top: 8%;
  left: 0.5%;
  width: 25%; 
  height: 25%; 
}

.projectsContainer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  bottom: 1.5%;
  left: 0.5%;
  width: 25%; 
  height: 2%; 
}

.creditsContainer {
  align-items: flex-start;
  justify-content: flex-end;
  bottom: 6%;
  left: 0.5%;
  width: 25%; 
  height: 25%; 
}

.menuContainer {
  top: 0.5%;
  left: 0.5%;
  width: 25%; 
  height: 6%; 
}

.whatContainer {
  top: 0.5%;
  left: 25.5%; 
  width: 25%;
  height: 6%;
}

.whereContainer {
  top: 0.5%;
  left: 50.5%; 
  width: 25%;
  height: 6%;
}

.contactContainer {
  top: 0.5%;
  left: 75.5%; 
  width: 24.5%;
  height: 6%;
}

.TextMenu, .Text {
  color: white;
  margin: 0;
  cursor: pointer;
  line-height: 1rem;
}

.TextMenu:hover {
  font-family: 'Archivo-LightItalic';
  font-style: italic;
}

.imgContainer {
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
/*align-items: center;*/
  justify-content: flex-start;
/*  border: 1px solid blue;*/
  width: 100vw;
  height: auto;
  white-space: nowrap;
  padding: 0rem 0;
  gap: 3rem;
  overflow: visible;
  overflow-x: hidden;
  cursor: none;
  z-index: 900;
}

.imgContainer figure {
  margin: 0;
  text-align: center;
  display: inline-block;
}

.imgContainer img {
  width: 31rem;
  height: auto;
  display: block;
  cursor: none;
}



/*Mobil*/

@media (max-width: 768px) {

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

  .menuContainer, .whatContainer, .whereContainer, .contactContainer, .creditsContainer, .projectsContainer, .infoContainer {
    display: flex;
    flex-direction: row;
    position: fixed;
/*    border: 1px solid red;*/
    mix-blend-mode: difference;
    width: 100%; 
    height: 5%; 
  }

  .creditsContainer, .projectsContainer, .infoContainer {
    font-size: 0.75rem;
  }

  .menuContainer {
    top: 0.5%;
    left: 1%;
    width: 32.66%; 
  }

  .whatContainer {
    top: 5.5%;
    left: 1%; 
  }

  .whereContainer {
    top: 5.5%;
    left: 51%; 
  }

  .contactContainer {
    top: 94.5%;
    left: 1%;
    width: 32.66%;  
    align-items: flex-end;
  }

.infoContainer {
  top: 20%;
  left: 1%;
  width: 50%; 
  height: 25%; 
}

.projectsContainer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  top: 91.5%;
  left: 1%;
  width: 25%; 
  height: 2%; 
  font-size: 0.9rem;
}

.creditsContainer {
  align-items: flex-start;
  justify-content: flex-start;
  top: 77.5%;
  left: 1%;
  width: 70%; 
  height: 25%; 
}

.TextMenu, .Text {
  color: white;
  margin: 0;
  cursor: pointer;
  line-height: 1rem;
}

.TextMenu:hover {
  font-family: 'Archivo-LightItalic';
  font-style: italic;
}

  .imgContainer {
    position: fixed;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
/*    border: 1px solid blue;*/
    width: 100vw;
    height: auto;
    white-space: nowrap;
    padding: 1rem 0;
    gap: 3rem;
    overflow: visible;
    overflow-x: auto;
    cursor: none;
    will-change: transform;
  }

  .imgContainer figure {
    margin: 0;
    text-align: center;
    display: inline-block;
  }

  .imgContainer img {
    width: 22.5rem;
    height: auto;
    display: block;
  }
}
