body {
  background-color: #ffa600 ;
  background-image: radial-gradient(
   rgb(16,21,27), #10151b 200%
  );
  height: 100vh;
  margin: 0;
  overflow: hidden;
  padding: 2rem;
  color: white;
  text-shadow: 0 0 5px #C8C8C8;
}

body::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 8px;
    z-index: 2;
    pointer-events: none;
    animation: flicker 0.30s infinite;
          box-shadow: 
                inset 0 0 40px rgba(0, 0, 0, 0.6), 
                inset 0 0 100px rgba(0, 0, 0, 0.8);
            filter: contrast(1.1) saturate(1.2);
}
@keyframes flicker {
		0% { opacity: 0.15795 }
		5% { opacity: 0.31511 }
		10% { opacity: 0.94554 }
		15% { opacity: 0.2469 }
		20% { opacity: 0.62031 }
		25% { opacity: 0.0293 }
		30% { opacity: 0.00899 }
		35% { opacity: 0.5344 }
		40% { opacity: 0.12778 }
		45% { opacity: 0.52042 }
		50% { opacity: 0.3823 }
		55% { opacity: 0.2198 }
		60% { opacity: 0.9383 }
		65% { opacity: 0.86615 }
		70% { opacity: 0.68695 }
		75% { opacity: 0.55749 }
		80% { opacity: 0.96984 }
		85% { opacity: 0.0361 }
		90% { opacity: 0.24467 }
		95% { opacity: 0.08351 }
		100% { opacity: 0.54813 }
	}



@font-face {
    font-family: 'VCR OSD Mono';
    font-style: normal;
    font-weight: 100;
    src: local('VCR OSD Mono'), url('https://fonts.cdnfonts.com/s/14798/VCR_OSD_MONO_1.001[1].woff') format('woff');
}

 a {
    color: #ffa600;
    text-decoration: none;
}

a:hover { text-shadow: 0 0 5px #ff8800; }

 p {
   color:#ffa600;
   font-family: 'VCR OSD Mono';
   overflow: hidden;
  font-size: 25px;
  text-shadow: 0 0 3px #ff8800;
  overflow: hidden;
  white-space: nowrap;
  animation-name: typing;
  animation-duration: 1s;
  animation-timing-function: steps(200, end);
  animation-iteration-count: 1;
  text-align: justify;

}
p:nth-child(1) {
    visibility: hidden;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
  }

  p:nth-child(2) {
    visibility: hidden;
    animation-delay: 5s;
    animation-fill-mode: forwards;
  }
p:nth-child(3) {
    visibility: hidden;
    animation-delay: 7s;
    animation-fill-mode: forwards;
  }

  p:nth-child(4) {
    visibility: hidden;
    animation-delay: 9s;
    animation-fill-mode: forwards;
  }

  p:nth-child(5) {
    visibility: hidden;
    animation-delay: 17s;
    animation-fill-mode: forwards;
  }

  p:nth-child(6) {
    visibility: hidden;
    animation-delay: 18s;
    animation-fill-mode: forwards;
  }
p:nth-child(7) {
    visibility: hidden;
    animation-delay: 20s;
    animation-fill-mode: forwards;
  }
p:nth-child(8) {
    visibility: hidden;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
p:nth-child(9) {
    visibility: hidden;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }

  p:nth-child(10) {
    visibility: hidden;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  p:nth-child(11) {
    visibility: hidden;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  p:nth-child(12) {
    visibility: hidden;
    animation-delay: 28s;
    animation-fill-mode: forwards;
  }

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100%;visibility: visible; }
}

/* The typewriter cursor effect 
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}*/