/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

@font-face {
  font-family: Minecraft; 
  src: url(../font/Minecraft.ttf);
}

/* text */

h1 {
	font-family: Minecraft;
	color: white;
}

p {
	font-family: Minecraft;
	color: white;
}

ul {
	list-style-type: square;
}

li {
	font-family: Minecraft;
	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;
}

.day h1 {
	text-align: center;
}

/* 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 {
	min-height: 100%;
	min-width: 100%;
	text-align: center;
	top: 2em;
}

.day {
	background-color: rgba(0, 0, 0, 0.5);
	border-style: outset;
	width: 50%;
	height: 33%;
	margin: auto;
	overflow: auto;
	text-align: left;
}

/* img */



/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('../media/waterlilies.jpg'); 
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}