.workshops {
  display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 3em;
    background-color: hwb(84 78% 18%);
}

.title2 {
  text-align: center;
  font-size: 48px;
  padding: 2em 0em 1em 0em;
  background-color: hwb(84 78% 18%);
  margin: 0px;
  max-width: 100vw;
}

p {
  max-width: 80%;
}

.intros {
  display: flex;
  align-self: center;
  text-align: center;
  max-width: 100vw;
  font-size: 25px;
  padding: 0em 8em;
  line-height: 1.5;
}

.workshoppics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding: 50px;
  margin: 0px;
  background-color: hwb(84 78% 18%);
}

.workshoppics img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshoppics img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media screen and (max-width: 1280px) {
  .workshoppics {
    grid-template-columns: repeat(5, 1fr);
    padding: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .workshoppics {
    grid-template-columns: repeat(5, 1fr);
    padding: 50px;
  }
}

@media screen and (max-width: 768px) {
  .workshoppics {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .workshoppics {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
