:root {
    --black: rgb(0, 0, 0);
    --border: #272727;
    --backround: #000
}

@font-face {
        font-family: pixel;
        src: url(VCR_OSD_MONO_1.001.ttf)
}
body {
    background-color: var(--black);
    background-image: linear-gradient(to bottom, #000, #000, #010307, #04070f);
    background-attachment: fixed;
    font-family: ms gothic;
    color: white;
}
#container {
    max-width: 1000px;
    margin: 0px auto auto;
    height: auto;
    margin-top: 40px;
    z-index: 1;
}
#header {
    height: 150px;
    width: 100%;
}
#title{
   padding-bottom: 0;
}
#header-img {
  position: absolute;
  z-index: -1;
}
h1 {
    font-family: pixel;
}
h3 {
    color: #3c756e;
}
a {
    text-decoration: none;
    color: white;
}
button {
  height: 30px;
  border: 1px solid #f67c33;
  background-color: black;
  color: #f67c33;
  font-family: pixel;
  cursor: pointer;
}
button:hover {
  border-color: yellow;
  color: yellow;
}
a:hover {
    color: yellow;
}
#grid {
    margin: 20px auto auto;
    width: 100%;
    display: grid;
    grid-template-columns: 20% 80%;
    height: fit-content;
}
#left {
    height: fit-content;
    grid-column: 1 / 2;
    display: flex;
    flex-wrap: wrap;
}
#main {
    height: fit-content;
    min-height: 800px;
    grid-column: 2 / 3;
}
#footer {
    width: 100%;
    height: 40px;
}
.content {
    padding: 10px;
}
.box {
    width: 98%;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: rgb(0, 0, 0);
    margin: 0px auto auto;
    margin-bottom: 10px;
}
.box:hover {
    border-color: rgb(92, 92, 92);
}
.vertwrap {
   width: fit-content;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
#nav {
    height: 300px;
}
#thing {
    height: 80px;
}

#welcome {
    height: 600px;
}
#facts {
  width: 300px;
  height: 100px;
  border: 1px dashed #272727;
  margin: 10px 10px;
}
#generate {
  margin: 10px auto auto;
}
#cyberdeck {
    display: flex;
    gap: 10px;
}

 .scroll::-webkit-scrollbar-track {
     background-color: #000;
}
 .scroll::-webkit-scrollbar {
     width: 10px;
     background-color: #000000;
}
 .scroll::-webkit-scrollbar-thumb {
     background-color: #04070f;
}
:after {
  z-index: -2;
  animation: stars 60s infinite linear;
  background: url("graphics/stars.png") top left;
  background-size: auto;
  background-repeat:round;
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

@keyframes stars {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100vw ;
  }
}
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}
.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
.crt::before {
  content: " ";
  display: block;
  position:fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
.crt {
  animation: textShadow 1.6s infinite;
}

/*gallery*/
.photo {
  width: fit-content;
  margin: 0px auto auto;
}