/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

/* text */

h1 {
	font-family: Alagard;
	color: white;
}

h2 {
	font-family: Alagard;
	color: white;
}

#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;
}

/* 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;
}

.page {
	height: 50%;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
}

/* img */



/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: black;
}