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


/*  
* Style by D3NN7
* and Patrick Hlauke (https://codepen.io/patrickhlauke/pen/YaoBop)
*/
body {
  background-color: #0F0F0F;
  color: #FFFCB0;
}
hr {
  display: block;
  height: 1px;
  border: 0;  
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  color: yellow;
}
p{  
  font-family: 'monospace';
  font-size: 2em;
}
b{
  font-family: '"Courier New", monospaced';
  font-size: 1.5em;
  text-align: center;
}
@font-face {
    font-family: 'Noto Sans Display';
    font-style: normal;
    font-weight: 400;
    src: url(./fonts/NotoSansDisplay-Regular.ttf);
  }
  html { background: #111;
         padding: 1em;
         font-family: Noto Sans Display;
         color: #eee;
         font-size: 1em;
         line-height: 1;
         text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
         letter-spacing: 0.125em;
         animation-duration: 0.01s;
         animation-name: textflicker;
         animation-iteration-count: infinite;
         animation-direction: alternate;
  }
  h1 {
    text-align: center;
    font-size: 3em;
    border-width: 3px;
    border-style: solid;
    border-color: #FFFCB0;
  }
  h2 {
    text-align: right;
    font-size: 3em;
    border-width: 3px;
    border-style: solid;
    border-color: #FFFCB0;
  }
  a {  
    color: #FFFCB0;
  }

  @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 #ea36af, -2px 0 0 #75fa69;
    }
    to {
      text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
      
    }
  }



