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

body {
  background-color: #000000;
  
}

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

h1 {
	color: #980033;
  font-size: 700px;
}

.hand-1 {
  animation: my-super-slant 1s infinite ;
  position: fixed;
  margin-right: 800px;

}
.hand-2 {
  animation: my-super-slant 2s infinite ;
  position: fixed;
  margin-top: 500px;

}
.hand-3 {
  animation: my-super-slant 3s infinite ;
  position: fixed;
  margin-left: 1000px;

}

.hand-4 {
  animation: my-super-slant 4s infinite ;
  position: fixed;
  margin-top: -200px;
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vw;
  margin-top: -400px;
}




@keyframes my-super-slant{
  from {  transform: rotate(0deg); }
  to {   transform: rotate(360deg); }
}


