@font-face {
  font-family: 'perfect_dos_vga';
  src: url(https://greaterthanunderscore.neocities.org/perfect_dos_vga_437_win-webfont.woff);
}

body {
  background-color: black;
  color: lime;
  font-family: 'perfect_dos_vga';
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.2) 0px,
  rgba(0, 0, 0, 0.2) 1px,
  rgba(0, 0, 0, 0) 2px,
  rgba(0, 0, 0, 0) 3px
  );
  animation: moveScanlines 0.5s linear infinite;
    }

@keyframes moveScanlines {
      from {
        background-position: 0 0;
      }
      to {
        background-position: 0 3px;
      }
    }
    
body {  
   opacity: 0;
   animation: fadeIn 0.1s ease forwards;
   animation-delay: 0.1s;
    }

   @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
img {
   max-width: 100%;
   max-height: 100%;
}

p, a, h1, h2, h3, h4, h5, h6, ul, ol {
  background-color: black;
  color: lime;
}

.imgbrdr {
  border: black 3px solid
}

home {
  border: lime 3px double;
  background-color: lime;
  padding: 3px;
  text-align: center;
  word-wrap: break-word;
  width: 450px;
}

bbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: lime;
  padding: 2px;
  color: black;
}