@charset "UTF-8";
.cloud-container {
  position: relative;
  height: 200px; /* 필요에 따라 조정*/
}

.cloud-container2 {
  position: absolute;
  height: 200px; /* 필요에 따라 조정*/
}

.cloudS {
  position: absolute;
  animation: moveClouds linear 70s infinite; /* 애니메이션 이름, 속도 조절, 반복 설정 */
}

@keyframes moveClouds {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/*렌딩 페이지*/
#persona, #landingPage {
  transition: opacity 0.5s linear;
  opacity: 0;
}

#landingPage {
  opacity: 1;
}

.visible {
  opacity: 1;
}

.landingPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(1, 166, 251), rgb(238, 240, 244));
  background-size: cover;
}

.landingAsset {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.landingPage img {
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 50%;
}

.title {
  color: rgb(255, 251, 44);
  font-size: 20rem;
  animation-name: colorChange;
  animation-duration: 17s;
  animation-iteration-count: infinite;
  font-family: "Rubik Beastly", cursive;
}

.landingAsset h1 {
  font-family: "Noto Sans KR";
  line-height: 3.5rem;
  color: rgb(38, 33, 87);
}

.Select {
  position: absolute;
  font-family: "Noto Sans KR";
  font-size: 2rem;
  pointer-events: all;
}

.infoTitle {
  margin-top: 20rem;
  margin-left: 28rem;
}

.toggleButton {
  padding: 10px;
  font-family: "Noto Sans KR";
  font-size: 1.1rem;
  position: absolute;
  top: 115px;
  left: 760px;
  border-radius: 40px;
  background-color: white;
  border: none;
  cursor: pointer;
}

.imgContainer {
  position: relative;
}

.imgSmall, .imgLarge {
  position: absolute;
  transition: opacity 0.8s ease-in-out;
}

.imgSmall {
  opacity: 1;
  width: 100%;
  transform: rotate(-15deg);
}

.imgLarge {
  opacity: 1;
  width: 100%;
  transform: rotate(-5deg);
}

.Three {
  position: absolute;
}

.photo1 {
  position: absolute;
  top: 210px;
  left: 478px;
}

.PR1 {
  position: absolute;
  top: 380px;
}

.PR2 {
  position: absolute;
  top: 380px;
  left: 990px;
}

.poster {
  display: relative;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  animation: posterR 2s infinite ease-in-out alternate;
  transform-style: preserve-3d;
}

@keyframes posterR {
  0% {
    transform: rotateY(-20deg);
  }
  100% {
    transform: rotateY(20deg);
  }
}
.world {
  width: 1300px;
  transform-origin: 50% 50%;
}

.ploar {
  position: absolute;
  width: 40%;
}

.ploar:nth-of-type(1) {
  top: 3500px;
  left: 6700px;
  transform: translateZ(-30px);
}

.ploar:nth-of-type(2) {
  top: 3500px;
  left: 6700px;
  transform: translateZ(-5px);
}

.ploar:nth-of-type(3) {
  top: 3500px;
  left: 6700px;
  transform: translateZ(30px);
}

.glitch {
  position: absolute;
  left: 5000px;
  top: 6000px;
}/*# sourceMappingURL=backasset.css.map */