<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('theme/reset.css');
@import url('theme/template.css');

@font-face {
	font-family:topaz;
	src:url('font/amigafonts/Topaz_a500_v1.0.ttf');
	font-display:block;
}

main &gt; div {
	align-self:stretch;
	justify-self:stretch;
	background-color:rgb(16,16,16);
	
	/* cursor */
   cursor:url('asset/amiga.cur'),default;
}
.box {
   font-family:topaz;
	font-size:1.2em;
	text-align:center;
	white-space:pre;
	
	/* style */
	padding:0.5em;
	margin:2em auto;
	line-height:2em;
	color:rgb(220,16,16);
	
	/* border */
	border-color:rgb(220,16,16);
	border-style:solid;
	border-width:0.5em;

	/* Animation */
	animation-name:GuruMeditation;
	animation-duration:3s;
	animation-timing-function:step-start;
	animation-iteration-count: infinite;
}

@keyframes GuruMeditation {
    50% {
		 border-color:transparent;
	 }
}</pre></body></html>