@charset "utf-8";

/* CSS Document */

html,
    html * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    /* rubik-regular - latin */
    @font-face {
      font-display: swap;
      font-family: 'Rubik';
      font-style: normal;
      font-weight: 400;
      src: url('../fonts/rubik-v28-latin/rubik-v28-latin-regular.woff2') format('woff2');
    }

    /* unna-regular - latin */
    @font-face {
      font-display: swap;
      font-family: 'Unna';
      font-style: normal;
      font-weight: 400;
      src: url('../fonts/unna-v23-latin/unna-v23-latin-regular.woff2') format('woff2');
    }


    .style-header {
      position: relative;
    }

    .style-header h1 {
      font-family: 'Unna';
      font-size: 12vw;
      color: #FFFFFF;
      position: absolute;
      top: 80.6%;
      left: 35%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
    }

    .style-header img {
      width: 100%;
      height: auto;
    }

    .style-nav {
      margin-top: 10px;
    }

    .style-nav ul {
      list-style: none;
      display: flex;
      padding: 20px;
      background-color: #1A727A;
      text-align: left;
      justify-content: left;
    }

    .style-nav ul li {
      padding: 0 2vw;
      margin-left: 40px;
    }

.style-nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-family: 'Rubik';
  font-size: 20px;
  line-height: 2;
  transition: color 0.3s;
}

.style-nav ul li a.arrow {
	font-size: 60px; /* Ändern Sie die gewünschte Größe */
	line-height: 0.6; /* Setzen Sie line-height auf 1 */
	vertical-align: middle; /* Zentrieren Sie vertikal innerhalb des Containers */
	padding: 0 20px; 
}

    .style-nav ul li a:hover {
      color: #beae95;
    }

    /* Media Query für kleine Bildschirme (z. B. Smartphones) */
    @media only screen and (max-width: 600px) {
      .style-nav ul {
        flex-direction: column;
        align-items: center;
      }
    }

    @media only screen and (max-width: 600px) {
      .style-nav ul li {
        margin: 0 10px;
      }
    }
	



.texxt h2 {
	font-family: 'Rubik';
	text-align: center;
	font-size: 35px;
}




#container {
  text-align: center;
}

ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


li {
  margin: 10px; /* Abstand zwischen den Bildern nach Bedarf anpassen */
}

li img {
  width: 200px;
  height: auto;
  cursor: pointer; /* oder einen anderen gewünschten Mauszeigerwert, z. B. 'zoom-in' */
  padding-top: 20px;
  padding-bottom: 20px;
}


.gallery img {
  user-select: none;
}

.gallery ul li {
	font-family: 'Rubik';
	font-size: 14px;
	font-style: italic;
}



.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  user-select: none;
	
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* Fügen Sie die folgenden Stile hinzu, um das Schließen-Symbol auszublenden */
  .modal .close {
    display: none;
  }



.Urheber {
	padding: 1vw;
	font-family: 'Rubik';
	text-align: center;
	font-size: 15px;
}

Urheber a {
font-family: 'Rubik';
color: black;
text-decoration: none;
}

.Urheber a:hover {
  color: #beae95; /* Ändert die Textfarbe beim Hovern */
}



.style-footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

.style-footer ul {
  list-style: none;
  display: flex;
  padding: 10px;
  background-color: #1A727A;
  text-align: center;
  justify-content: center; /* Mittig zentrieren */
}

.style-footer ul li {
  padding: 0.5vw 3vw; /* Proportionaler Abstand zur Fensterbreite verwenden */
}

.style-footer ul li a {
  padding: 0.5vw 3vw; /* Proportionaler Abstand zur Fensterbreite verwenden */
  font-family: 'Rubik';
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s; /* Fügt eine sanfte Übergangsanimation hinzu */
}

.style-footer ul li a:hover {
  color: #beae95; /* Ändert die Textfarbe beim Hovern */
}

	


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #1A727A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid #ffffff; /* Weiße Kontur mit 2px Breite hinzufügen */
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-to-top.show {
    opacity: 1;
}

.arrow {
    font-size: 20px;
    color: #ffffff;
}

