@font-face {
  font-family: 'forestry';
  src: url(fonts/Forestry.ttf);
}

@font-face {
  font-family: 'highsummit';
  src: url(/fonts/HighSummit.ttf);
}

@font-face {
  font-family: 'jeff';
  src: url(/fonts/QEJeffDungan.ttf);
}

@font-face {
  font-family: 'witchwood';
  src: url('/fonts/Witchwoode-Regular.ttf');
}

/*
--carbon-black: #19191Aff;
--dark-khaki: #3E3A28ff;
--soft-linen: #ECEDE6ff;
--evergreen: #1B3528ff;
--deep-walnut: #463721ff;
--medium-evergreen: #6c7d74;
--light-evergreen: #a3aea9;*/


/*wild spirals*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #19191Aff;
  color:  #a3aea9;
  font-family:'witchwood';
}

a {
    color: red;
    text-decoration: none;
}

ul {
  overflow: hidden;
  perspective: 900px;
  list-style: none;
  height: 100vh;
  max-height: 800px;
  min-height: 400px;
  text-align: center;
 font-family:'witchwood';
}

@keyframes width-sway {
  0%, 100% {
    width: 500px;
  }
  50% {
    width: 100%;
  }
}
li {
  position: absolute;
  top: 0;
  width: 100%;
  transform: translateY(100vh);
  font-size: 1.5rem;
  font-family:'witchwood';
    letter-spacing: 2px;
  font-weight: bold;
  animation: 5.3333333333s spiral-staircase linear infinite;
}

li:nth-child(1) {
  animation-delay: 0.3333333333s;
}

li:nth-child(2) {
  animation-delay: 0.6666666667s;
}

li:nth-child(3) {
  animation-delay: 1s;
}

li:nth-child(4) {
  animation-delay: 1.3333333333s;
}

li:nth-child(5) {
  animation-delay: 1.6666666667s;
}

li:nth-child(6) {
  animation-delay: 2s;
}

li:nth-child(7) {
  animation-delay: 2.3333333333s;
}

li:nth-child(8) {
  animation-delay: 2.6666666667s;
}

li:nth-child(9) {
  animation-delay: 3s;
}

li:nth-child(10) {
  animation-delay: 3.3333333333s;
}

li:nth-child(11) {
  animation-delay: 3.6666666667s;
}

li:nth-child(12) {
  animation-delay: 4s;
}

li:nth-child(13) {
  animation-delay: 4.3333333333s;
}

li:nth-child(14) {
  animation-delay: 4.6666666667s;
}

li:nth-child(15) {
  animation-delay: 5s;
}

li:nth-child(16) {
  animation-delay: 5.3333333333s;
}

li:nth-child(1) {
  right: 1rem;
}

li:nth-last-child(1) {
  right: 1rem;
}

li:nth-child(2) {
  right: 2rem;
}

li:nth-last-child(2) {
  right: 2rem;
}

li:nth-child(3) {
  right: 3rem;
}

li:nth-last-child(3) {
  right: 3rem;
}

li:nth-child(4) {
  right: 4rem;
}

li:nth-last-child(4) {
  right: 4rem;
}

li:nth-child(5) {
  right: 5rem;
}

li:nth-last-child(5) {
  right: 5rem;
}

li:nth-child(6) {
  right: 6rem;
}

li:nth-last-child(6) {
  right: 6rem;
}

li:nth-child(7) {
  right: 7rem;
}

li:nth-last-child(7) {
  right: 7rem;
}

li:nth-child(8) {
  right: 8rem;
}

li:nth-last-child(8) {
  right: 8rem;
}

@keyframes spiral-staircase {
  0% {
    transform: rotateY(90deg) translateY(105vh) rotate(0deg);
  }
  50% {
    transform: rotateY(0deg) translateY(50vh) rotate(0deg);
  }
  100% {
    transform: rotateY(-90deg) translateY(-5vh) rotate(0deg);
  }
}