@font-face{
  font-family: 'Apple II';
  src: url('../fonts/MomsTypewriter.ttf');
}

html {
  background: black;
  background-image: linear-gradient(
      to right,
      #000000,
      #111122,
      #111122,
      #000000
  );
}

body {
  color: rgba(200, 200, 200, 1.0);
  font-size: 16pt;
  font-family: 'Apple II';
  /* screen glow */
  /* text glow */
}

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

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

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

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

.img {
    display: inline-block;
    height: 256px;
}

.descimg {
    display: inline-block;
    height: 256px;
}

#output {
  padding: 2vw 2vw 0 2vw;
}

#output div {
  margin-bottom: 10px;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.input {
  display: flex;
}

a {
  color: orange;
}

#input {
  height: 26px;
  width: 98.5vw;
  color: rgba(255, 255, 255, 1.0);
  background: transparent;
  font-size: 16pt;
  font-family: "Apple II";
  border: none;
  position: relative;
  margin-left: 5px;
}

.inputtxt {
  color: rgba(255, 255, 255, 1.0);
  margin-top: 50px;
}

span {
  margin-left: 2vw;
}

#input:focus {
  outline: none;
}

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

#main-menu {
    position: fixed;
    right: 0px;
    background: black;
}
