html {
    font-size: 10pt;
}

body {
  height: 100;
  width: 100;
  margin: 0;
  font-family: 'Source Code Pro', monospace;
  background: #000;
  image-rendering: pixelated;
}

@keyframes playbgrev {
  from { background-position: -500vw; }
  to { background-position: 100vw; }
}

#bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  opacity: 0;
  transform: translateZ(0);
  transition: .5s;
  will-change: opacity;
  background: url("https://media.giphy.com/media/3oFyCZm9jPjlzsAwXS/source.gif") no-repeat center center fixed;
  background-size: 150%;
}


.container {
    
}

.logo {
  width: 100px;
  position: fixed;
  left: calc(50% - 50px);
  top: calc(50% - 30px);
  z-index: 20;
}