@font-face {
  font-family: 'VCR_OSD_MONO';
  src: url(fonts/vcr_osd_mono/VCR_OSD_MONO_1.001.ttf);
}

@font-face {
  font-family: 'dogica_pixel';
  src: url(fonts/dogica/TTF/dogicapixel.ttf);
}

@font-face {
  font-family: '000webfont';
  src: url(fonts/000webfont/000webfont.ttf);
}

@font-face {
  font-family: 'basiic';
  src: url(fonts/basiic/basiic.ttf);
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-300px, 0, 0);
  }
}

html {
  height: 100%;
}

body {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1d0042;
}

a:visited {
  color: chocolate;
}

.sliding-background {
  position: absolute;
  z-index: -9999;
  background: url('img/background_stars.gif') repeat;
  height: 100%;
  width: 10000px;
  animation: slide 100s linear infinite;
}

#staticCanvas {
  z-index: -9999;
  position: absolute;
}

nav a {
  font-size: large;
  padding: 8px;
}

.main {
  margin-top: 10vh;
  width: 60%;
  min-width: 250px;
  max-width: 600px;
  display: flex;
  align-items: left;
  flex-direction: column;
  font-size: medium;
  font-family: 'basiic';
}

.main .content {
  background-color: #4b4b4b88;
  padding: 5%;
  font-size: medium;
  line-height: 20px;
}

.terminal {
  text-align: left;
  color: green;
  background-color: black;
  padding: 3px;
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  font-size: medium;
}

footer {
  text-align: right;
}
