@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;
  overflow: hidden;
  background-color: white;  
  color: black; 
  font-family: 'Archivo-Medium';
  font-size: 0.9rem;
  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;
}

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

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

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

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

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

.contactContainer {
  top: 0.5%;
  left: 75.5%; 
  width: 24.5%;
  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: 0.5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
/*  border: 1px solid blue;*/
  width: 100vw;
  height: auto;
  white-space: nowrap;
  padding: 1rem 0;
  gap: 7.25rem;
  overflow: visible;
  overflow-x: hidden;
  filter: blur(0.3rem);
  opacity: 0.2;
}

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

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

figcaption {
  text-align: left;
}





/*Mobil*/

@media (max-width: 768px) {

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }

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

  .infoContainer {
    top: 25%;
    left: 1%;
    width: 60%; 
    height: 25%; 

  }

  .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;
  }

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

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

 .imgContainer {
  position: fixed;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
/*    border: 1px solid blue;*/
    width: 100vw;
    height: auto;
    white-space: nowrap;
    padding: 0rem 0;
    gap: 1rem;
    overflow: visible;
    overflow-x: hidden;
    filter: blur(0.3rem);
    opacity: 0.2;
  }


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

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

  figcaption {
    text-align: left;
  }
}


