@font-face {
	font-family: 'tf2-professor';
	src: url(../font/tf2professor.ttf);
}

html { 	
	width: 100%;
	height: 100%;	
	background:url(../img/blackboard.jpg);
	background-size: 100% 100%;
	overflow: hidden;
	display: compact;
	margin: 0px;
	padding: 0px;
}

body {
	color: #CCC;
	background-color: rgba(0, 0, 0, 0);
	font-family: 'tf2-professor';
	font-size: 32px;
	font-size: 6.4vmin;
	padding: 0px;
	line-height: normal;
	
	margin-top: 0px;
	margin: 0;
}

.container {
	max-width: 1170px;
	margin: auto;
	/* margin-right: 6.5%; */
}

h1 {
	font-size: 48px;
	font-size: 9.6vmin;
	margin: 0px 0px;
	font-weight: 500;
}

h1, .title {
	color: #EEE;
}

ul {
	margin-top: 0.25em;
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.text-center {
	text-align: center;
}

#motd-image {
	max-height: 40vh;
}

.page-arrow {
	height: 4.0vmin;
	vertical-align: text-bottom;
	cursor: pointer;
}

p {
	margin-top: 10px;
	margin-bottom: 0;
}

.page-indicator {
	font-size: 36px;
	font-size: 6.4vmin;
	margin: 2.0vmin 2.0vmin;
}

.nav-disabled {
	opacity: 0.4;
}

#motd-buttons {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

#motd-buttons .nav-arrow {
	text-decoration: none;
	color: inherit;
	font-size: .8em;
	font-weight: bold;
}

/* Sourced from "Align Lists Flush Left" -- https://j.eremy.net/align-lists-flush-left/ */
/* Enforces use of TF2-styled hyphen for bulleted lists. */
ul {
	display: table;
	margin-left: 0;
	padding-left: 0;
	list-style: none;
}
li:before {
	content: "-  ";
	display: table-cell;
	padding-right: 0.4em;
}
li {
	display: table-row;
	margin-left: -0.5em;
}

li > strong {
	color: #EEE;
}

/* sticky footer implementation */

body {
	/* flexible container that takes up screen height */
	display: flex;
	flex-direction: column;
	height: 100%;
}

.footer {
	/* fixed-height footer */
	flex: 0 0 13.2vh;
}

#main-content {
	/* grow content until footer is reached */
	overflow-y: auto;
	flex: 1;
}

/* webkit scrollbar */
#main-content::-webkit-scrollbar {
	width:1rem;
}

#main-content::-webkit-scrollbar-track {
	/*-webkit-box-shadow: inset 0 0 6px white;*/
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAABCAYAAAAb4BS0AAAAFUlEQVQYV2NkYGBgOHPmzH8TExNGABemBAKlqZA0AAAAAElFTkSuQmCC) center repeat-y;
}

#main-content::-webkit-scrollbar-thumb {
	background-color: #5F5B65;
	-webkit-box-shadow: inset 0 0 2px white;
	border: 1px solid gray;
}
