* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "GmarketSansMedium", sans-serif;
  background-color: #fff;
  line-height: 1.6;
}

@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

.zentorga-body {
  margin: 0;
  padding: 0 0 100px 0;
}

.zentorga-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .zentorga-body {
    padding: 0;
  }
  .zentorga-layout {
    max-width: none;
  }
}

/* 이미지 */
.zentorga-images {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.zentorga-layout .zentorga-images img,
.zentorga-layout .zentorga-images video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

@media (min-width: 768px) {
  .zentorga-images img {
    border-radius: 12px 12px 0 0;
  }
}

/* 완료 페이지 */
.zentorga-complete {
  margin: 0 auto;
  max-width: 768px;
}

.zentorga-complete img {
  width: 100%;
}

/* 스크롤 박스 */
.zentorga-scroll-wrapper {
  width: 100%;
  height: 15vw;
  max-height: 200px;
  min-height: 130px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zentorga-scroll-box {
  width: 70%;
  height: 80%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
}

.zentorga-scroll-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zentorga-scroll-up 10s linear infinite;
}

.zentorga-scroll-item {
  width: 100%;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
  font-size: clamp(12px, 3vw, 20px);
  padding: 1%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@keyframes zentorga-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

