@font-face {
    font-family: 'Perfect DOS VGA 437 Win';
    src: url('fonts/PerfectDOSVGA437Win.eot');
    src: url('fonts/PerfectDOSVGA437Win.eot?#iefix') format('embedded-opentype'),
        url('fonts/PerfectDOSVGA437Win.woff2') format('woff2'),
        url('fonts/PerfectDOSVGA437Win.woff') format('woff'),
        url('fonts/PerfectDOSVGA437Win.svg#PerfectDOSVGA437Win') format('svg');
    font-weight: bold;
    font-style: normal;
}

@keyframes fadein {
    0% { opacity: 0; }
    20% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes blink {
    0% {opacity: 1;}
    49.9% {opacity: 1;}
    50.1% {opacity: 0;}
    100% {opacity: 0;}
}

#dosScreenContent {
    padding: 0.6em 0.3em;
	font-family: "Perfect DOS VGA 437 Win";
	font-size: 24px;
	font-weight: bold;
	color: rgb(192,192,192);
	white-space: pre;
	overflow: hidden;
}

#dosScreenContent {
	animation-name: fadein;
	animation-duration: 4s;
}

#dosScreen img {
    image-rendering: optimizespeed;
}

#dosScreenContent:after {
	content: "\2582";

	animation-name: blink;
	animation-duration: 1s;
	animation-iteration-count: infinite;

	font-size: 50%;
	line-height: 325%;
}