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;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 2.5vh;
}

.L_IH {
  width: 30vw;
  height: 70vh;
  position: relative;
}

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

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

.L_CV {
  width: 60vw;
  height: auto;
  min-height: 80vh;
  height: 100%;
}

.L_CV h2{
  font-size: clamp(1em, 2vw, 3em);
  margin-top: 0;
  font-weight: 500;
}

.CV_Item {
  color: grey;
  font-size: clamp(1em, 1.25vw, 1.5em);
  margin-left: 30px;
  margin-top: 1.75vh;
  margin-bottom: 1.75vh;
  font-weight: 300;
  width: 70%;
}

@media (max-width:900px) {
  .L_Screen{
    flex-direction: column;
    width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .L_IH{
    width: 100%;
    height: 50vh;
  }

  .L_CV{
    width: 100%;
    height: auto;
    margin-top: 5vh;
  }

  .L_CV h2{
    font-size: clamp(1em, 3vh, 3.5em);
  }

  .CV_Item{
    margin-left: 1vw;
    font-size: clamp(1em, 2vh, 2.5em);
    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_Screen{
    width: 95%;
  }
}