/*
  RobCo like CSS theme made by @2gn. Free to use.
*/

@font-face {
  font-family: FixedSys;
  font-display: swap;
  src: url(FSEX302.ttf);
}

:root {
  --robco-green: #47dd9e;
  --robco-background: #02110a;

  background-color: var(--robco-background);
  color: var(--robco-green);
  font-family: FixedSys;
  animation-timing-function: linear;
}


#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, var(--robco-background) 25%, #2a7556 25%, #2a7556 50%, var(--robco-background) 50%, var(--robco-background) 75%, #2a7556 75%);
  background-size: 10px 10px;
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
}

::selection {
  background-color: var(--robco-green);
  color: var(--robco-background);
}
