/* 3270VT Terminal Emulation Styles */

/* Set the background color to black with a glowing green radial gradient */
body {
  background-color: black;
  background-image: radial-gradient(rgba(0, 150, 0, 0.75), black 120%);
  height: 100vh;
  color: white;
  font: 1.3rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
}

/* Add faint monitor lines using an ::after pseudo-element */
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    0deg,
    rgba(black, 0.15),
    rgba(black, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
}

/* Fun selection style */
::selection {
  background: #0080FF;
  text-shadow: none;
}

