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

body {
  background-color: #000000;
  
}

.hand {
  position: fixed;
  z-index: 1;
  margin-top: 400px;
}

h1 {
	color: #e000ff;
  font-size: 200px;
  line-height: 50%;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vw;
  margin-top: -400px;
  animation: my-super-slant 0.2s infinite alternate;
}



@keyframes my-super-slant {
  0% {  font-variation-settings: "ELSH" 1, "BACK" 900; opacity: 1; }
  5% {  font-variation-settings:  "ELSH" 0, "BACK" 1; opacity: 0.5; }
  70% {  font-variation-settings: "ELSH" 1, "BACK" 900; opacity: 0.3; }
  75% {  font-variation-settings: "ELSH" 1, "BACK" 900; opacity: 0.75; }
  100% {  font-variation-settings:  "ELSH" 0, "BACK" 1; opacity: 1; }
}
