@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

body {
  color: #0bb42c;
  font-size: 3.2vh;
  font-family: 'Marcellus', serif;
  line-height: 4vh;
  background-image: radial-gradient(#1B1B1B, black 120%);
  text-shadow: 0 0 5px rgba(12, 126, 22, 0.6);
  width: 100%;
  text-align: center;
}

/* scanlines effect */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(rgba(0, 255, 8, 0.03) 0.5vh, rgba(0, 0, 0, 0.05) 0.8vh);
  z-index: -1;
}

/* Loading */
#loading {
  width: 1em;
  height: 1.22em;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
  display: none;
  float: left;
  text-align: left;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* scrollbar */

::-webkit-scrollbar {
  width: 1vw;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #000;
}

/* animation styles */

@keyframes blink {
  0% {background: green;}
  49% {background: green;}
  60% {background: transparent;}
  99% {background: transparent;}
  100% {background: green;}
}
