:root {
  font-family: 'asfalt';
}

.hand {
  position: fixed;
  z-index: 1;
}

.container {
  height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  perspective: 1500px;
}

.ottos {
  margin-top: -200px;
  font-size: 5000px;
  font-weight: 600;
  color: #980033;
  transform: rotateX(15deg) rotateY(-20deg) rotateZ(10deg);
  animation: my-super-slant 3s infinite  ease-in-out;
}


@keyframes my-super-slant{
  0% { font-variation-settings: "wght" 300, "wdth" 50; text-shadow: 20px 20px 20px #e000ff; }
  100% { font-variation-settings: "wght" 700, "wdth" 50;text-shadow: 200px 200px 300px #e000ff;}
}
