


@font-face {
  font-family: 'TTY';
  src: url('Glass_TTY_VT220.ttf');
}

/* 
CRT font style found here: 
https://retrocomputing.stackexchange.com/questions/12835/exactly-what-color-was-the-text-on-monochrome-terminals-with-green-on-black-and 
*/

body {
	padding:150px;
}

body,p,a {
	background: black;
	font-size: 30px;
	color: #f0fff8; /* almost white */
	text-shadow: 0 0 3px #80ffc0, 0 0 10px #00ff66, 0 0 20px #00ff66, 0 0 30px #00ff66;
	font-family: 'TTY';
}


