@import url("https://fonts.googleapis.com/css2?family=Titan+One&display=swap");
.untoldcoding {
  width: 100vw;
  text-align: center;
}
.untoldcoding span {
  -webkit-text-stroke-width: 1.25px;
  -webkit-text-stroke-color: #ffffff;
  font-size: 100px;
  text-shadow: 0 0px #f3bc23, 0 0px #f2aaaa;
  transform: translate(0, 100%) rotate(4deg);
  animation: jump 2s ease-in-out infinite;
  display: inline-block;
  font-family: "Titan One", cursive;
  color: #ffffff;
}
.untoldcoding span:nth-child(1) {
  animation-delay: 120ms;
}
.untoldcoding span:nth-child(2) {
  animation-delay: 240ms;
}
.untoldcoding span:nth-child(3) {
  animation-delay: 360ms;
}
.untoldcoding span:nth-child(4) {
  animation-delay: 480ms;
}
.untoldcoding span:nth-child(5) {
  animation-delay: 600ms;
}
.untoldcoding span:nth-child(6) {
  animation-delay: 720ms;
}
.untoldcoding span:nth-child(7) {
  animation-delay: 840ms;
}
.untoldcoding span:nth-child(9) {
  animation-delay: 960ms;
}
.untoldcoding span:nth-child(10) {
  animation-delay: 1080ms;
}
.untoldcoding span:nth-child(11) {
  animation-delay: 1200ms;
}

@keyframes jump {
  33% {
    text-shadow: 0 60px #f37121, 0 150px #f2aaaa;
  }
  50% {
    transform: translate(0, 0) rotate(-4deg);
    text-shadow: 0 0px #8fc0a9, 0 0px #84a9ac;
  }
  66.67% {
    text-shadow: 0 -60px #4074d5, 0 -150px #8fc0a9;
  }
}
html {
  width: 100%;
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

@media screen and (max-height: 200px) {
  .untoldcoding {
    transform: scale(0.3, 0.3);
  }
}
@media screen and (max-width: 576px) {
  .untoldcoding span {
    font-size: 50px;
  }
}
