/* 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." */

@font-face {
  font-family: pixel;
  src: url(basiic.ttf);
}
p {
font-size: 15px;
text-align:left;
}
@font-face{
  font-family:consola;
  src: url(consola.ttf);
}
h1{
  font-size:20px;
}
body {
  background-image: url("wave.png");
  background-attachment: scroll;
  background-size:100vw;
  
  font-family: consola, monospace;
  color: #99ff00;
  text-align:center;
}

#flex-container{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  width:auto;
  height:auto;
  background:black;
  border:3px #99ff00 double;
  margin:0 auto;
}

.flex-item{
  width:auto;
  height:auto;
  background:transparent;
  border:1px transparent solid;
  color:#99ff00;
}

@media screen and (min-width: 1200px) {
    body {
        margin-left: 20rem;
        margin-right: 20rem;
    }
  }

  @media screen and (min-width: 600px) {
      body {
          margin-left: 5em;
          margin-right: 5em;
      }
  }
 
  @keyframes textflicker {
    from {
      text-shadow: -1px 0 0 #001cff, -1px 0 0 #001cff;
    }
    to {
      text-shadow: 10px 0.5px 2px #001cff, 10px -0.5px 2px #a200ff;
    }
  }

.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%;
    }
}

.titlee{
  font-family:consola,monospace;
  font-size:10px;
  animation-duration:0.01s;
  animation-name:textflicker;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}

.titlee2{
  font-family:consola,monospace;
  font-size:20px;
  animation-duration:0.01s;
  animation-name:textflicker;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}
