
.projekt-uebersicht {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: Center;
  gap: 1.5rem;
  padding:0 1rem;
 }

.projekt-card{
  display: flex;
  flex-direction: column;
  border: 2px solid yellowgreen;
  border-radius: 10px;
  text-align: center;
  background-color: #1e1e2f;
  opacity: 0.9;
  width: 250px;
  height: 250px;
  margin: 3rem 0rem;
  padding: 1rem 0;
}

.projekt-ImageBox{
  cursor: pointer;
}

.projekt-ImageBox img{
  width: 60%;
  height: 100px;
  border-radius: 5px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 1rem;
  transition:  transform 0.3s ease;
  }

  .projekt-ImageBox :hover img{
    transform: scale(1.05);
  }

.project-ImageBox:hover .overlay {
  opacity: 1;
}

.projekt-header{
  text-align: Center;
  color: darkgoldenrod;
}

.projekt-technologien {
  color: #FF9900;
  font-size: 1rem;
  font-style: italic;
}

.projekt-beschreibung {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #02afce;
}

.projekt-links a {
  margin-right: 1rem;
  color: #00D9FF;
  font-weight: bold;
  text-decoration: none;
}

.projekt-links a:hover {
  text-decoration: underline;
}




