*{
	color: white;
	box-sizing: border-box; /*How to calculate box sizes*/
	}

p{
	font-size: 16px;
}

body {
	background-color: #191b27;
	margin: 0;
	padding: 0;
}

header {
	background-color: rgba(0,0,0,0.5);
	background-image:  url("test_banner_accent.png"), url("border_placeholder.png");
	background-repeat: no-repeat, no-repeat;
	background-size: 450px 325px , 100vw 100%;
	background-position: center , center;
	text-align: center;
	margin: 0px;
	padding: 10px;
	font-family: Oxanium;
	text-shadow: 3px 3px black;
}

/* Style the topnav, overall not w/buttons */
ul.topnav {
	margin: -1px;
	padding: 0;
	height:60px;
	width: 75vw;
	min-width: 500px;
	background-image: url("Bar_accent.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	display: flex;
	justify-content: center;
	list-style-type: none;
	color: black;
}


ul.topnav li{
	height: 100%;
	width: 150px;
	margin: 0px -55px 0px 0%;
	margin
	padding: 0px;
	background-image:  url("buttonborder2.png");
	background-size: 100% 100%;
	background-position: center;
	align-content: center;
	text-align: center;
}

#spaceritem{
	background-image:url("spaceritem.png");
	width: 105px;
}

/* Style unordered lists with class topnav with a link active*/
ul.topnav li a {
	height: 100%;
	display: block;
	text-align: center;
	align-content: center;
	color: black;
	padding: 14px 16px;
	text-decoration: none;
}

/* Change color on hover */
ul.topnav li a:hover {
	background-image:  url("full_buttonborder2.png");
	background-size: 100% 100%;
	background-position: center;
}

/* Container for the flex "category" to adjust spacing*/
div.catcontainer{
	margin: 40px 80px 80px;
	display:flex;
	justify-content: center;
}

/*Display for div that is a flex-container*/
div.categories{
	margin: 0px auto auto; /*AUTO AUTO CENTERS MAX WIDTH, DUMMY*/
	display: flex;/* flex;*/
	flex-direction: row;
	flex-wrap: wrap; 
	justify-content: center; /* Sobbing & crying */
}

/*Div for single item entry (image and text paragraph stuffies)*/
div.item{
	margin: 10px;
	height: 200px;
	width: 500px;
	display: flex;
	flex-direction: row;
	border: 5px outset silver;
	background-color: #0D0E15;
}

/*Div for single linked item???*/
div.item a{
	height:100%;
	display: flex;
	flex-direction: row;
	text-decoration: none;
}

/*Div for single item block of text*/
div.itemtext{
	height: 100%;
	display:flex;
/*	
	border: 5px solid black;*/
	flex-direction: column;
	justify-content: center;
}

/* Header for card items */
.itemtext h2{
	color: #5A6997;
	margin: 2%;
}

.itemtext p{
	margin: 2%;
	margin-top: 0%;
	text-align: left;
}

div.category > div {
  margin: 10px;
}

/* Mobile browsing reorder to fit */
/* just use flex wrap? */
/*
@media screen and (max-width:2000px) {
div.categories {
	display: grid;
	grid-template-columns: 600px 600px; 
	}
}

@media screen and (max-width:1400px) {
div.categories {
	display: grid;
	grid-template-columns: 600px; 
	}
}
*/