html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
  background: #a8e6a3;
  color: #000;
}

section {
  height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

img.placeholder, .placeholder {
  width: 300px;
  height: 200px;
  background: #ccc;
  display: block;
  margin: 1rem 0;
}

.clearfix {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.img-container {
  width: 200px;
}

.founders {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
