body {
  margin: 0;
  background: #000300;
  height: 100vh;
  xdisplay: flex;
  justify-content: center;
  align-items: center;
  
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
}

.crt-screen {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-bottom: 1.5rem;
	/*
  width: 80%;
  height: 60%;
  background: #000300;
  display: flex;
  align-items: center;
  margin-top: -20%;
  justify-content: center;
  position: relative;
	*/
}

.text-container {
  color: #33ff33;
  font-size: 1.5rem;
  text-shadow: 0 0 5px #33ff33, 0 0 10px #33ff33, 0 0 20px #33ff33;
  white-space: pre-wrap;
}

.cursor {
  display: inline-block;
  background: #33ff33;
  width: 10px;
  height: 1.2rem;
  margin-left: 2px;
  animation: blink 0.5s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
