* {  /* First, clear fucking everything.*/
	margin: 0;
	padding: 0;
}

body { /*Then, make the body.*/
	
	background-color: black; /*#f3c688;*/
	color: black;
	font-family: monospace;

}


.container {  /*Now, make the main body part.*/
	/*
	display: flex;
	flex-flow: row wrap;
	column-gap: 1em;
	align-items: flex-start;
	*/
	width: 80%;
	min-height: 100%;
	background-color: white;
	margin: 0;
	position: absolute;
	left: 10%;
	top: 0%;
	
	display: flex;
	flex-direction: column;
}

/************************************************/
/*					LINK STUFF  			    */
/************************************************/


.headnavlist a:link{
	display: block;
	text-decoration: none;
	color: white;
}

.headnavlist a:visited {
	display: block;
	text-decoration: none;
	color: white;
}

.headnavlist a:hover {
	display: block;
	text-decoration: none;
	color: white;
}

.headnavlist a:active {
	display: block;
	text-decoration: none;
	color: white;
}


.submenu a:link{
	display: block;
	text-decoration: none;
	color: white;
}

.submenu a:visited {
	display: block;
	text-decoration: none;
	color: white;
}

.submenu a:hover {
	display: block;
	text-decoration: none;
	color: white;
}

.submenu a:active {
	display: block;
	text-decoration: none;
	color: white;
}





a:link{
	text-decoration: none;
	color: black;
}

a:visited {
	text-decoration: none;
	color: black;
}

a:hover {
	text-decoration: underline;
	color: black;
	cursor: crosshair;
}

a:active {
	text-decoration: none;
	color: black;
}


/************************************************/
/*				DECORATIVE STUFF  			    */
/************************************************/

.allthecoolstuff {
	font-family: sans-serif; 
	flex: 1 1 auto;
	padding: 2em;
}

.logotext {
	padding: .3em;
	margin-top: 2em;
	font-size: 1.5em;
}

.footerstuff {
	padding: .3em
}

.about ul {
	list-style: none;
}

.about ul li:before {
	content: "▷ ";
}


.updates ul {
	list-style: none;
}

.updates ul li:before {
	content: "◁ ";
}

.smallboxtitles {
	font-family: monospace;
}

/************************************************/
/*				FIC PAGE STUFF  			    */
/************************************************/






/************************************************/
/*				NAV MENU STUFF  			    */
/************************************************/


.submenu {

	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	
	
	position: absolute;
	background-color: black;
	color: white;


}

.submenu {
	list-style: none;
}

.submenu li{
	padding: .5em;
}

.submenu li:hover {
	cursor: crosshair;
}

.headnavlist {
	list-style: none;
	margin: 0;
	padding: 0;
	
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	
	column-gap: 3em;
	background-color: black;
	color: white;
	
	position: relative;
	
	font-size: 1.5em;
}

.headnavlist li {
	/*padding: 0 1em;*/
	border: none;
	padding: .5em;
}

.headnavlist li:hover {

	background-color: grey;
	cursor: crosshair;
}

.headnavlist li:hover .submenu {

	display: flex;
	flex-flow: column wrap;
}



