
html {
	padding: 0px;
	background-image: url('/img/tiles/back.png');

	/* Disable antialiasing on images. */
	/* https://stackoverflow.com/questions/14068103/disable-antialising-when-scaling-images */
	image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Universal support since 2021   */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;

	/* Disable font smoothing. */
	/* https://stackoverflow.com/questions/10538570/is-it-possible-to-disable-font-smoothing-in-css */
	font-smooth: never;
	-webkit-font-smoothing : none;
}


body {
	margin: 2cm 20%;
	padding: 0cm 1cm;

	font-family: serif;
	font-size: 16pt;

	color: #dbdbdb;
	background-color: #242424;
	border: 5px solid #b6b6b6;
}


/* Headers */

header {
	text-align: center;
	justify-content: center;

	position: fixed;
	background-color: #242424;

	width: 100%;
	height: 5ex;
	padding-top: 3ex;

	display: absolute;
	left: 0px;
	top: 0px;



	font-size: 11pt;
}



/* Heading styles */

h1, h2, h3 {
	text-align: center;
	padding-bottom: 1ex;
}

h1 {
	border-bottom: 4px solid #6d6d6d;
}



.content {
	margin-top: 27pt;
	padding: 1cm 0cm;
}

.content p {
	text-align: justify;
}


ul li b {
	margin-right: 0.5ex;
}


/* Link Styling */


a, a:link, a:visited {
	color: #b6b6b6;
	background-color: #494949;
}

header a, .entry a {
	text-decoration: none;
	font-family: monospace;
	border-top:     3px solid #6d6d6d;
	border-left:    1px solid #6d6d6d;
	margin: 1ex 2ex;
	padding-left: 2ex;
	padding-right: 4ex;	
}

header a:hover, .entry a:hover {
	border-top:    3px solid #929292;
	border-left:   1px solid #929292;
}

a:hover {
	background-color: #6d6d6d;
}

a:active {
	color: #242424;
	background-color: #b6b6b6;
}




.poem {
	margin-left: 1cm;
	margin-bottom: 2ex;
	border-left: 1ex solid #494949;
	padding: 1px;
	padding-left: 2ex;
}


/* Index Styling */

.entry {
	border-top: 1px dotted #6d6d6d;
	padding: 1ex 2ex;
}

.entry a {
	display: block;
	padding-bottom: 4px;
}

.entry:first-child {
	border-top: 0px;
}

	
.entry-title {
	font-size: 18pt;
	letter-spacing: -1px;
}

.entry-date {
	display: block;
	float: none;
	text-align: right;
	font-family: monospace;
	font-size: 11pt;
}




header a {
	padding: 6pt 8pt;
}
