body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e2f;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

header {
  background-color: #29293d;
  padding: 20px;
  text-align: center;
}

section {
  padding: 20px;
}

.setup-options {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.option {
  background-color: #33334d;
  padding: 15px;
  border-radius: 10px;
  width: 30%;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #29293d;
}
.banner {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}
section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}