
html { height: 100%; }

body {
	font-family: monospace;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.8rem;
	margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1.2rem;
}

h1::before { content: "# "; }
h2::before { content: "## "; }
h3::before { content: "### "; }
h4::before { content: "#### "; }
h5::before { content: "##### "; }
h6::before { content: "###### "; }

body,
.menu-container,
.side-container,
.main-container {
	background-color: white;
}

.profile-container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.profileimage {
	width: 100%;
	align-self: center;
}

.root-container {
	display: flex;
	width: 100%;
}

.side-container {
	width: 20%;
	height: 100%;
	position: fixed;
	z-index: 1;
	border-right: 1px solid black;
	padding: 5%;
}

.menu-container {
	position: fixed;
	width: 100%;
	height: auto;
	padding: 0px;
	border-bottom: 1px solid black;
}

.main-container {
	width: 70%;
	margin-left: 30%;
}

.main-container > main {
	padding: 5%;
}

.menu .menu-item,
.list .list-item {
	list-style: none;
}
.menu .menu-item a {
	padding: 10px 20px;
	margin: 0px;
	display: block;
	text-align: center;
	border: 1px solid white;
}
.menu .menu-item a:hover {
	border: 1px solid black;
}

.social-links,
.menu {
	display: flex;
	align-items: center;
	margin: 0px;
	padding: 0px;
}
.social-links { flex-wrap: wrap;}

.nextprev {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
}

.time-list {
	margin: 0;
	width: 100%;
	border: 0px
}

.time-list tr {
	background-color: white; 
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: start;
}

ul {
	list-style-type:'- ';
}

a { 
	color: black; 
	text-decoration: none;
}
a:hover {
	background-color: black;
	color: white;

}

blockquote {
	margin: 0px;
	border-left: 5px solid black;
	padding: 5px 20px;
	background-color: lightgrey;
}

pre {
	border: 1px solid black;
	padding: 10px;
}

table {
	margin: auto;
	border: 2px solid black;
	min-width: 50%;
}

th { border-bottom: 1px solid grey; }

th, tr {
	margin: 0px;
	text-align: left;
}

