@charset "UTF-8";
/* Hier sit der Stil für die Projekte Section  */
.projekte {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  --xPos: 100px;
  --yPos: 150px;
  opacity: 0.8;
}
.projekte:hover .projekt {
  background: radial-gradient(200rem circle at var(--xPos) var(--yPos), #a19273, transparent 15%);
}
.projekte .projekt {
  width: 18%;
  height: 830px;
  border-radius: 0.5rem;
  position: relative;
}
.projekte .projekt .img-projekte {
  width: 100%;
  height: auto;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.projekte .projekt:hover {
  transform: scale(1.02);
}
.projekte .projekt:hover::before {
  opacity: 1;
}
.projekte .projekt::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: radial-gradient(100rem circle at var(--xPos) var(--yPos), rgba(145, 129, 96, 0.1), transparent 45%);
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.projekte .projekt .projektBack {
  background-color: #222222;
  border-radius: inherit;
  transition: all 0.25s;
  width: 100%;
  height: 100%;
}

.projektContent {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.projektContent h3 {
  padding: 10px;
  text-align: center;
  font-weight: 200;
  font-size: 30px;
}
.projektContent p {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
}/*# sourceMappingURL=style_projekte.css.map */