body{
 margin: 0;
 background: #181C21;
 background: #E7E9E6;
 width: 100vw;
 height: 100vh;
}

/*Glitch logo*/
#glitchLogo_menu{
  background-image: url('./assets/spritesheet_low_dark.png');
  background-position: 0px;
  transition: clip-path 0.1s ease-in-out;
  clip-path: inset(0% 0% 0% 0%);
  width: 300px;
  height:127px;
  background-repeat-y: no-repeat;
  display: block;
  margin-top: 30px;
  margin-left: -30px;

  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: steps(24);
  z-index: 3;
}

@keyframes sprite {
  from { background-position: 0px; }
  to { background-position: -7200px; }
}
