body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}

p,
h1,
h2,
h3,
h4,
h5,
a,
li,
input {
  font-family: "Arimo";
  text-decoration: none;
}

div {
  display: flex;
  flex-direction: column;
}

.Screen {
  width: 100vw;
  height: auto;
  min-height: 100vh;
}

.L_Screen {
  width: 95vw;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  justify-content: flex-end;
}

.S2 h1 {
  font-size: clamp(1em, 2vw, 3em);
  font-weight: 300;
}

.L_IH {
  width: 100%;
  height: 60vh;
  position: relative;
}

.L_IH img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.LIH_Darkener {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.33;
}

.S2{
    width: 95vw;
    height: 70vh;
    box-sizing: border-box;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
    margin-left: 5vw;
}

.S2 h2, li, p{
    color: grey;
    font-weight: 400;
}

.S2 h2{
    font-size: clamp(1em, 1.5vw, 1.75em);
}

.S2 p, li{
    font-size: clamp(1em, 1.25vw, 1.5em);
}

@media (max-width:900px) {
  .S2 h2{
    font-size: clamp(1em, 2vh, 2em);
}

.S2 p, li{
    font-size: clamp(1em, 1.75vh, 2em);
}

.L_Screen h1 {
  font-size: clamp(1em, 3vh, 4em);
  font-weight: 300;
}

.L_IH {
  width: 100%;
  height: 30vh;
  position: relative;
}

.S2{
  height: auto;
}

}


@media (min-width: 1800px) {
  .Screen {
    max-width: 1600px; /* Setze hier deine gewünschte maximale Breite */
    margin: 0 auto; /* Zentriert das Container-Element */
  }

  .L_Screen{
    width: 95%;
  }

  .S2{
    width: 95%;
  }
}