body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1000;
  background-color: transparent; /* 초기 배경색은 투명 */
  padding: 10px 0;
}

.logo {
  height: 50px;
}

.carousel {
  position: absolute;
  top: 0px; /* 로고 높이를 고려하여 조정 */
  bottom: 0px; /* 저작권 정보 높이 고려 */
  width: 100%;
  overflow: hidden;
}
.description {
  margin-top: 20px;
  color: black;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
.description2 {
  color: white;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
.title {
  margin-top: 0px;
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
.title1 {
  margin-top: 0px;
  color: black;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
.title2 {
  color: white;
  margin-top: 0px;
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px;
  z-index: 1000;
}

.slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
}

.active {
  opacity: 1;
}
