* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: white;
    background: black;
  }

.page-header {
    font-size: 8vw;
    margin-left: 2vw;
    padding: 0;
}

.spacer {
  width: 100%;
  height: 15vh;
}

footer {
  background-color: #007BFF;
  padding: 20px;
  text-align: center;
  font-size: 0.8vw;
  overflow: hidden;
}

.row {
  display: flex;
  flex-direction: row;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 0;
  padding-top: 1.5vh;
  z-index: 10;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 3vw;
  list-style: none;
  margin-left: 2vw;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.6vw;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #007BFF;
}

.column {
  display: flex;
  flex-direction: column;
}


.basic-text {
  font-size: 1.15vw;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto; /* Für ältere Browser */
  -moz-hyphens: auto;   /* Für Firefox */
  word-wrap: break-word;
}

.base-link {
  font-size: 2.5vw;
}

.basic-second-heading {
  font-size: 2vw;
}


.back-arrow-big {
  font-size: 5vw;
}

.hidden {
  display: none;
}

#Pop-Op-Wrong-Browser {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

#Pop-Op-Wrong-Browser div {
  height: 50%;
  width: 80%;
  border-radius: 25px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.99);;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#Pop-Op-Wrong-Browser div p {
  color: black;
}

#Pop-Op-Wrong-Browser div a {
  margin-top: 5%;
  text-decoration: none;
  color: black;
}

#Pop-Op-Wrong-Browser div a:hover {
  color: #007BFF;
}

#Page-Mobile {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle at center 50%, rgba(255,255,255,0.3) 20%, rgba(0,0,0,1) 80%);
}

#Page-Mobile p {
  color: white;
  text-align: center;
  font-size: 2vh;
  margin-left: 2vw;
  margin-right: 2vw;
  overflow: hidden;
}