@import url(https://fonts.googleapis.com/css?family=Kanit:600);
@import url(https://fonts.googleapis.com/css?family=Kanit:600);
@import url(https://fonts.googleapis.com/css?family=Kanit:600);
@import url(https://fonts.googleapis.com/css?family=Kanit:600);
@import url(https://fonts.googleapis.com/css?family=Kanit:600);
.arid-outer {
  width: 100%;
  height: 100%;
}

.arid-inner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-clip-path: polygon(calc(var(--lo) + 31%) 21%, calc(var(--lo) + 78%) 32%, calc(var(--lo) + 79%) 70%, calc(var(--lo) + 15%) 64%);
          clip-path: polygon(calc(var(--lo) + 31%) 21%, calc(var(--lo) + 78%) 32%, calc(var(--lo) + 79%) 70%, calc(var(--lo) + 15%) 64%);
}

.blur {
  position: relative;
  font: normal 600 5vw/1.5 Kanit, sans-serif;
}

.clone {
  position: absolute;
  opacity: 0.1;
}

.blur.left > .clone {
  animation-name: slide;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0,0.9,0.9,0);
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform: translateX(20em);
}

.blur.right > .clone {
  animation-name: slide;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0,0.9,0.9,0);
  animation-direction: reverse;
  animation-fill-mode: forwards;
  transform: translateX(-8em);
}

@keyframes slide {
  0% {
    transform: translateX(20em);
  }
  100% {
    transform: translateX(-8em);
  }
}

.burns-outer {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.burns-inner {
  position: absolute;
  width: calc(100% + 8em);
  height: calc(100% + 8em);
  top: -4em;
  left: -4em;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-attachment: initial;
}

.burns-inner {
  animation: burns 3s linear both;
}

@keyframes burns {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(4em) translateY(-3em) scale(1.1);
  }
}

.credits-wrapper {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.credits {
  font: normal 600 1vw/1.5 Kanit, sans-serif;
}

.credits {
  animation: slide-up 30s linear forwards;
}

.credit {
  height: 25vh;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}

.fader {
  width: 100%;
  height: 100%;
}


.fader {
  animation: fade 500ms linear both;
  background-color: black;
  opacity: 0;
}


@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.frame-outer {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 50px;
}

.frame {
  position: relative;
  font: normal 600 5vw/1.5 Kanit, sans-serif;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  transform: rotate(-2deg);
  display: grid;
  place-items: center;
}

.frame:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid black;
  transform: rotate(-3deg);
}

.frame {
  animation: rotate-left 5000ms linear both;
}

.frame:after {
  animation: rotate-left-2 5000ms linear both;
}

@keyframes rotate-left {
  from {
    transform: rotate(2deg);
  }
  to {
    transform: rotate(-2deg);
  }
}

@keyframes rotate-left-2 {
  from {
    transform: rotate(3deg);
  }
  to {
    transform: rotate(-3deg);
  }
}

.frame-inner {
  animation: rotate-right 5000ms linear both;
}

@keyframes rotate-right {
  from {
    transform: rotate(-2deg);
  }
  to {
    transform: rotate(2deg);
  }
}

.iconcannon {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.cannon {
  position: absolute;
  animation-name: cannon;
  animation-duration: 350ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
  transform-origin: center;
}

@keyframes cannon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  90% {
    transform: scale(2.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.75);
    opacity: 0;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shard-wrapper {
  position: relative;
  transform-origin: center;
  transform: rotate(-5deg);
  width: 100%;
  height: 100%;

}

.shard {
  position: absolute;
  height: calc(100% + 200px);
  top: -100px;
  box-shadow: 15px 0 5px 5px currentColor;
  animation: 8s linear 1s infinite alternate both running movement;
}

@keyframes movement {
  from {
    transform: translateX(50px);
  }
  to {
    transform: translateX(-50px);
  }
}

.squares {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(9, 1fr);
  place-items: center;
}

.squares > span {
  width: 75px;
  height: 75px;
}

.squares > span {
  animation: scale-up 500ms ease-in-out both;
  animation-delay: calc(100ms * var(--col));
  opacity: 0;
}

.squares.row > span {
  animation-delay: calc(100ms * var(--row));
}

.squares.tl > span {
  animation-delay: calc(100ms * (var(--row) + var(--col)));
}

@keyframes scale-up {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

span > span {
  display: inline-block;
  white-space: pre;
}
  
.subscribe {
  display: inline-block;
  font: normal 600 5vw/1.5 Kanit, sans-serif;
  background-color: red;
  color: white;
  overflow: hidden;
  padding: 0 1em;
}

.text-intro > span > span {
  animation: slide-in 0.25s cubic-bezier(0.54, 0.21, 0.87, 1.71) both;
  animation-delay: calc(60ms * var(--char-index));
  opacity: 0;
}

@keyframes slide-in {
  from {
    transform: translateY(1em) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.bell {
  display: inline-block;
  margin-left: 30px;
  animation-name: ring-in;
  animation-delay: 1250ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform-origin: center;
  opacity: 0;
}

@keyframes ring-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1) rotate(-25deg);
    opacity: 1;
  }
  40% {
    transform: rotate(25deg);
  }
  60% {
    transform: rotate(-25deg);
  }
  80% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-25deg);
    opacity: 1;
  }
}

.bg {
  display: inline-block;
  font: normal 600 5vw/1.5 Kanit, sans-serif;
  background-color: red;
  overflow: hidden;
  padding: 0 1em;
  transform: skew(-15deg);
}

.f {
  transform: skew(15deg);
}

.text-intro > span > span {
  animation: slide-in 0.25s cubic-bezier(0.54, 0.21, 0.87, 1.71) both;
  animation-delay: calc(120ms * var(--char-index));
  opacity: 0;
}

@keyframes slide-in {
  from {
    transform: translateY(1em) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}


/*# sourceMappingURL=main.f774cd7a.chunk.css.map*/