body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.carousel {
  width: 100%;
  max-width: 800px;
  height: 800px;
  margin: 20px auto 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

.maintenance-text {
  text-align: center;
  padding: 20px;
}

.maintenance-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.maintenance-text p {
  font-size: 1.2em;
  color: #555;
}

.carousel img:first-child {
    opacity: 1;
}

