/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

@font-face {
	font-family: ModernDOS;
	src: url(../font/ModernDOS8x16.ttf);
}


/* text */

#navbar a {
	color: white;
	margin: 0;
	text-decoration: none;
	font-family: Alagard;
	font-size: 2em;
}

#navbar a:hover {
	color: #948765;
	margin: 0;
	text-decoration: none;
	font-family: Alagard;
	font-size: 2em;
}

h1 {
	font-family: ModernDOS;
	color: white;
	text-align: center;
}

h2 {
	font-family: ModernDOS;
	color: white;
}

p {
	font-family: ModernDOS;
	color: white;
	text-indent: 1em;
}

ul {
	list-style-type: square;
	list-style-position: inside;
	color: white;
}

li {
	font-family: ModernDOS;
	color: white;
}

a {
	color: red;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: none;
}

a:visited {
	color: red;
	text-decoration: none;
}

a:visited:hover {
	color: white;
	text-decoration: none;
}

/* div */

#navbar {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: black;
	width: 100%;
	justify-content: space-evenly;
	position: sticky;
	top: 0;
	margin-bottom: 15px;
}

.page {
	width: 95%;
	height: 90%;
	background-color: rgba(0, 0, 0, 0.8);
	margin: auto;
	display: flex;
	justify-content: space-evenly;
}

.column {
	width: 25%;
	height: 100%;
	display: flex; 
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.box {
	width: 90%;
	max-height: 30%;
	overflow-y: auto;
	background-color: black;
	border-image-source: url(../media/woodborder.png);
	border-image-slice: 120 120 120 120;
	border-image-width: 20px 20px 20px 20px;
	border-image-outset: 20px 20px 20px 20px;
	border-image-repeat: stretch stretch; 
	padding: 10px;
}

/* img */



/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url(../media/adriftbg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}