@font-face {
  font-family: "buzzcut_display";
  src: url(Buzzcut_Display.otf);
}  
  
  
body {
  animation: buzz 3s infinite alternate;
}

@keyframes buzz {
  0% { background-color: rgb(200, 255, 0); }
  100% { background-color: rgb(8, 0, 255); }
}


body {
    background: rgb(200, 255, 0);  
  margin: 10px;
  padding: 10px;

  font-family: "buzzcut_display";
  letter-spacing: 5px;

  padding: 20px;
  

  cursor: url('cursor.png'), auto;
}

.header {
  color: rgb(8, 0, 255);
  font-weight: 500;
  font-size: 50vw;
  font-style: normal;
  text-transform: uppercase;
  line-height: 400px;
  font-weight: normal;
  text-align: center;
  margin: 0px;

}
.disc {
  color: rgb(8, 0, 255);
  font-weight: 600;
  font-size: 250px;
  font-style: normal;
  text-transform: capitalize;
  line-height: 0.75; 
  text-align: center;
  margin: 0px;
}

span:hover {
  color: rgb(200, 255, 0);
  text-shadow: -2px 0 rgb(200, 255, 0), 2px 0 blue;
  transform: skew(2deg);
}

span {
transition: 0.4s;
}

/*span {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}*/




