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

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

.L_IH {
  width: 100%;
  height: 60vh;
  position: relative;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

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

.Link_Row {
  width: 90%;
  height: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vh;
  margin-top: 1vh;
  margin-left: 5%;
  margin-right: 5%;
}

.LR_Label,
.LR_Link {
  font-weight: 300;
  font-size: clamp(1em, 1.25vw, 1.5em);
  color: grey;
  width: auto;
  margin: 0;
  font-family: 'Manrope';
}

.LR_Link {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .L_Screen h2 {
    font-size: clamp(1em, 3vh, 4em);
    font-weight: 300;
  }

  .L_IH {
    width: 100%;
    height: 30vh;
    position: relative;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .Link_Row {
    flex-direction: column;
    align-items: flex-start;
  }

  .LR_Link {
    font-size: clamp(1em, 1.2vh, 2em);
  }

  .LR_Label {
    font-weight: 600;
    font-size: clamp(1em, 1.5vh, 2em);
  }
  
}



@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%;
  }

}