body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.project {
  max-width: 500px;
  background: #111;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.slideshow img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  background-color: #000;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow img.active {
  opacity: 1;
}

.sections {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.section {
  background: #1f1f1f;
  padding: 1.5rem 3rem;
  border-radius: 10px;
  text-decoration: none;
  color: #00ffcc;
  transition: transform 0.2s, background 0.3s;
}

.section:hover {
  transform: scale(1.05);
  background: #00ffcc;
  color: #111;
}
