@charset "UTF-8";
/*----- Styles für die "Projekte" Seite -----*/
#intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--default-green);
  color: white;
  height: 250px;
}
#intro h1 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 4rem;
  margin: 1rem 0;
}
#intro p {
  font-size: 1rem;
  font-weight: 200;
  max-width: 900px;
  line-height: 1.8;
}

#projects {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--default-green);
  max-width: 900px;
  margin: 0 auto 5rem auto;
}
#projects h2 {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 5rem;
}
#projects p, #projects ul {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

#project0-details {
  display: flex;
  flex-direction: row;
}
#project0-details img {
  width: 480px;
  height: 320px;
  object-fit: cover;
}
#project0-details p {
  max-width: 450px;
  padding: 0 0 0 30px;
}

#project1-details {
  display: flex;
  flex-direction: row;
}
#project1-details img {
  width: 480px;
  height: 270px;
}
#project1-details p {
  max-width: 450px;
  padding: 0 0 0 30px;
}

#project2-details {
  display: flex;
  flex-direction: row;
}
#project2-details p {
  max-width: 450px;
  padding: 0 30px 0 0;
}

#project3-details {
  display: flex;
  flex-direction: row;
}
#project3-details ul, #project3-details p {
  max-width: 650px;
}
#project3-details ul {
  padding: 15px 0 15px 25px;
}
#project3-details img {
  width: 230px;
  height: 230px;
  padding-left: 14px;
}

/*# sourceMappingURL=style-projects.css.map */

/*----- Responsive Anpassungen -----*/
@media (max-width: 1000px) {
  #intro {
    height: auto;
    padding: 1.5rem;
    text-align: center;
  }
  #intro h1 {
    font-size: 2.5rem;
  }
  #projects {
    padding: 0 1.5rem;
  }
  #projects p, #projects ul {
    text-align: left;
  }
  #project0-details,
  #project1-details,
  #project2-details,
  #project3-details {
    flex-direction: column;
  }
  #project0-details img,
  #project1-details img {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
  #project0-details p,
  #project1-details p {
    max-width: none;
    padding: 1rem 0 0 0;
  }
  #project2-details p {
    max-width: none;
    padding: 0 0 1rem 0;
  }
  #project2-details iframe {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    height: auto;
  }
  #project3-details img {
    width: 180px;
    height: 180px;
    padding: 1rem 0 0 0;
  }
}
