@font-face {
    font-family: 'White Rabbit';
    src: url('/static/fonts/whitrabt/whitrabt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  src: url("/static/fonts/materialsymbols/outlined.woff2") format('woff');
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html {
    height: 100%;
}

a {
    color: #33FF00;
}

body {
    margin: 0;
    font-family: sans-serif;
    font-family: "White Rabbit", verdana, arial;
    color: #33FF00;
    text-shadow: 0px 0px 5px #33FF00;
    background: rgb(18,51,5);
    background: radial-gradient(circle, rgba(18,51,5,1) 0%, rgba(4,5,4,1) 100%);
    height: 100%;
}

h1, h2, h3 {
    font-weight: 400;
    color: #33FF00;
}

hr {
    border-color: #33FF00;
    border-width: 1px;
    margin-left: 5%;
    margin-right: 5%;
    box-shadow: 0px 0px 5px 0px #33FF00;
}

#scanlines {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#scanlines:before,
#scanlines:after {
    display: block;
    pointer-events: none;
    content: ' ';
    position: absolute;
}

/* unique scanline */
#scanlines:before {
    width: 100%;
    height: 10px;
    z-index: 99999;
    background: rgba(0, 0, 0, .7);
    opacity: 0.75;
    animation: scanline 16s linear infinite;
}

/* the scanlines */
#scanlines:after {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: linear-gradient(to bottom, transparent 69%, rgba(0, 0, 0, .3) 70%);
    background-size: 100% 6px;
    animation: scanlines 1.5s steps(90) infinite;
}

@keyframes scanline {
    0% {
        transform: translate3d(0,200000%,0);
    }
}

@keyframes scanlines {
    0% {
        background-position: 0 50%;
    }
}