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;
  flex-direction: column;
  flex-wrap: wrap;
}

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

.LS_Mitarbeiter_Container {
  width: 100%;
  height: auto;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-bottom: 10vh;
}

.LS_MC_Mitarbeiter_Item {
  width: 19%;
  padding-right: 1%;
  height: 40vh;
  margin-top: 2vh;
}

.LSMI_IH {
  width: 100%;
  height: 100%;
  background-color: lightgray;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 0px 3px 0px grey;
}

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

.MI_Text {
  width: 90%;
  margin: 0;
  color: grey;
  font-size: clamp(0.8em, 1vw, 1.2em);
  font-weight: 300;
  padding-top: 1vh;
}

.Andenken_Container {
  width: 100%;
  height: 60vh;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.AC_L {
  width: 30%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.AC_L img {
  width: 75%;
  height: 75%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 0px 3px 0px grey;
}

.AC_R {
  width: 65%;
  height: 100%;
  justify-content: center;
}

.AC_R_Header {
  font-size: clamp(1em, 2vw, 3em);
  font-weight: 600;
  color: black;
  margin: 0;
  margin-bottom: 1vh;
}

.AC_R_Text {
  font-size: clamp(1em, 1.5vw, 3em);
  font-weight: 400;
  color: grey;
  margin: 0;
  width: 90%;
}

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

  .LS_Mitarbeiter_Container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .LS_MC_Mitarbeiter_Item {
    min-width: 100%;
  }

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

  .Andenken_Container {
    flex-direction: column;
    align-items: center;
  }

  .AC_L {
    width: 100%;
  }
}

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

  .L_Nav_Section {
    height: 14vh;
    width: 95%;
  }

  .L_Screen {
    width: 95%;
  }

  .Footer {
    width: 95%;
  }
}
