* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#app {
  width: 100%;
  min-height: 100vh;
  text-align: center;
}

.container {
  width: 100%;
  min-height: 100vh;
  max-width: 750px;
  margin: 0 auto;
  background-image: url("../imgs/loading.jpg");
  aspect-ratio: 750/2659;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
}
.header .header-image {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.carousel-section {
  position: absolute;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
  width: calc(686 / 750 * 100vw);
  height: calc(210 / 750 * 100vw);
  max-width: 686px;
  max-height: 210px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px #0003;
  z-index: 10;
}

#carousel1 {
  top: 4.5%;
  width: 90vw;
  height: 72vw;
  max-width: 675px;
  max-height: 540px;
}

#carousel2 {
  top: 29%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.carousel-slide.active {
  opacity: 1;
}