* {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  white-space: pre-wrap;
  flex-wrap: wrap;
  height: 100vh;
  background-color: rgb(243, 57, 57);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  color: white;
  font-size: 12vh;
  font-weight: 600;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 25vw;
  height: 30vh;
}

.box span {
  position: absolute;
}

.box span:nth-child(1) {
  z-index: 1;
  text-shadow:
    0 0 0px rgb(255, 255, 255),
    0 3px 1px rgb(231, 188, 188);
  top: -20vh;
  animation: rotate 7s linear infinite;
}

.box span:nth-child(2) {
  z-index: 0;
  color: rgb(0, 0, 0);
  top: -16vh;
  opacity: 0.1;
  animation: rotate 7s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
