* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: "ibm-model3x";
	src: url("../fonts/Ac437_IBM_Model3x_Alt1.ttf") format("truetype");
}

html {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
}

body {
	display: flex;
	flex-direction: row;
	background-image: url("../imgs/oct-2nd-2.png"), url("../imgs/backgrounds/underground.jpg");
	background-repeat: no-repeat, repeat;
	background-attachment: fixed, scroll;
	background-position: bottom right, top left;
	background-size: 560px auto, 50% auto;
	justify-content: center;
	font-family: "ibm-model3x";
	image-rendering: crisp-edges;
}

main {
	
	width: 400px;
	height: auto;
	font-size: 20px;
	background-color: white;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 2px 2px 5px white, -2px -2px 5px white;
	margin: 10px 10px auto 10px;
}

#leftBar, #rightBar {
	position: sticky;
	top: 0px;
	left: 0px;
	height: fit-content;
}

#leftBar a, #rightBar a {
	text-shadow: 2px 2px 10px white, -2px -2px 10px cyan, -2px 2px 10px magenta, 2px -2px 10px yellow;
	font-size: 16px;
	color: black;
	text-decoration: none;
}

#leftBar a::before, #rightBar a::before {
	content: "𖦹"
}

#leftBar a:hover, #rightBar a:hover {
	color: rgb(74, 68, 199);
}

ol, ul {
	list-style-type: none;
	
}

.date {
	color: #b33054;
}