body {
  background-color: #0000AA;
  color: white;
  font-family: 'BlueScreen', monospace;
  font-size: 16px;
  line-height:1.5;
  margin: 40px;
  }

  
/*fonto woooh */
@font-face {
  font-family: 'BlueScreen';
  src: url('/fonts/DOSVGA.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

      
/* scanlines */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* so you can still click links */
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0px,
    rgba(0,0,0,0.2) 2px,
    transparent 2px,
    transparent 4px
  );
}
      
      
.header {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: #0000AA;
  background-color: #b0afab;
  }
  
  .post {
  border: 2px solid #00ffff;
  padding: 10px;
  margin: 20px 0;
  margin-bottom: 30px;
  background-color: #000000;
  color: #AAAAFF;
  font-family: 'BlueScreen', monospace;
}

    
.date {
    font-size: 14px;
    color: #AAAAFF;
  }
    
.title {
    text-transform: uppercase;
    font-weight: bold;
    margin: 10px 0;
  }
      
/*links*/
a {
    color: #FFFF55;
    text-decoration: none;
  }
a:hover {
    text-decoration: underline;
  }