/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html {
  font-size: 25px;
}

@font-face {
  font-family: 'Mellow';
  src: url("/Super_Mellow.ttf")
}

@font-face {
  font-family: 'Dossmall';
  src: url("/ModernDOS8x8.ttf")
}

@font-face {
  font-family: 'Doslarge';
  src: url("/ModernDOS9x16.ttf")
}

@font-face {
  font-family: 'DS';
  src: url("/Nintendo-DS-BIOS.ttf")
}


body {
  background-color: #0f0f0f;
  font-family: DS;
  line-height: 1.4;
  padding:0;
  margin:0;
}

body h2 {
  text-align: center;
}

/* header */
header {
  font-size: 40px;
  padding: 0;
  margin: 0;
  text-align: center;
  position: sticky;
  top: 1;
  line-height: .4;
  color: #f2f0ed;
  background-color: #0f0f0f;
}

header h1 {
  font-size: 6vw;
  line-height: .6;
  font-family: Doslarge;
  width: 100%;
  text-align: center;
  padding-top: 18px;
  margin: 0;
}

nav {
  margin: 1rem 0;
  padding: 15px;
  padding-bottom: 19px;
  background-color:#ff8333;
}
  
  
nav a:hover {
  color: #bdbdbd;
}

/*main content*/
main {
  background-color: #0f0f0f;
  margin-left: 5%;
  margin-right: 5%;
  padding: 2rem;
  }

section {
  margin-bottom: 2rem;
  color: #ff8333;
}

footer {
  background-color: #ff8333;
  padding: 20px;
  word-spacing: 10px;
  text-align: center;
}

.container {
  margin-left: 5%;
  margin-right: 5%;
  background-color: #f2f0ed;
  padding: 2rem;
  border: 15px solid #ed812f;
  color: #ff8333;
}

.zernotitle {
  margin: 0;
  padding: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  /* scanlines by ynef */
  .scanlines {
    overflow: hidden;
    position: relative;
}
.scanlines:before,
.scanlines:after {
    display: block;
    pointer-events: none;
    content: "";
    position: absolute;
}
.scanlines:before {
    width: 100%;
    height: 2px;
    z-index: 2147483649;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.75;
    animation: scanline 6s linear infinite;
}
.scanlines:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483648;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 51%
    );
    background-size: 100% 4px;
    animation: scanlines 1s steps(60) infinite;
}

/* ANIMATE UNIQUE SCANLINE */
@keyframes scanline {
    0% {
        transform: translate3d(0, 200000%, 0);
    }
}
@keyframes scanlines {
    0% {
        background-position: 0 50%;
    }
}
div {
    margin: 0;
    padding: 0;
}
div.scanlines {
    position: absolute;
}
div .jpg {
    width: 100vw;
    height: 100vh;
    border: none;
}

body {
    position: relative;
    background: #1b1b1f;
}

  
