@font-face {
    font-family: 'robotoregular';
    src: url('Roboto-Regular-webfont.eot');
    src: url('Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('Roboto-Regular-webfont.woff2') format('woff2'),
         url('Roboto-Regular-webfont.woff') format('woff'),
         url('Roboto-Regular-webfont.ttf') format('truetype'),
         url('Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
img {
  width: 128px;
  height: auto;
  animation: spin 1s infinite steps(12);
}

body {
  background: #000000;
  padding: 2vw;
}

@keyframes spin {
  100% {
    transform: rotateZ(360deg);
  }
}

