/*stylesheet for ravenousravishing*/

/*to make everything function & resize lol */
.flex-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin-bottom: 10px;
}

.flex-container > div {
  background-color: chartreuse;
}


body {
	background-image: url("../images/backgrounds/graybat.png");
	background-repeat: repeat;
}

header {
	background-color: gray;
	font-family: "Aldrich", sans-serfif;
	color: white;
	border-style: solid;
	border-color: black;
	margin: auto;
	margin-bottom: 10px;
	width: 750px;
	text-align: center;
	text-shadow: 2px 2px 0 black;
}

main {
	background-color: darkgrey;
	border-style: solid;
	border-color: black;
	width: 500px;
	margin-left: 50px;
	margin-right: 50px;
	order: 2;
}

aside {
	order: 3;
}

nav {
	background-color: darkgrey;
	border-style: solid;
	border-color: black;
	width: 90px;
	padding: 15px;
	border-radius: 15px 50px 30px;
}

footer {
	background-color: lightgrey;
	border-style: solid;
	border-color: darkgrey;
	text-align: center;
	flex-basis: 100%;
	margin: 10px;
	order: 4;
}

#navBar {
	text-align: center;
	font-family: "Arial", sans-serif;
	padding: 5px;
	line-height: 30px;
	order: 1;
}

#updatesSidebar {
	background-color: darkgrey;
	border-style: solid;
	border-color: black;
	width: 150px;
	height: 190px;
	padding-left: 5px;
	padding-right: 5px;
	overflow: scroll;
	font-family: "Arial", sans-serif;
	text-align: center;
}

#updatesSidebar > h5 {
	color: white;
	text-shadow: 2px 2px 0 black;
}


#updatesSidebar > hr {
	width: 100px;
}

#mainContent {
	text-indent: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

#navBar > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#navBar > ul > li {
	background-color: silver;
	margin-bottom: 10px;
	border-style: solid;
	border-color: black;
}

/*all links on page*/
a:link {
	color: white;
	text-decoration: none;
}

a:hover {
	background-color: darkgrey;
}

a:visited {
	color: black;
}

a:active {
}

p {
	font-family: "Calibri", sans-serif;
}

@media screen and (max-width: 600px) {
.flex-container {
	display: flex;
	flex-direction: column;
	/*background-color: dodgerblue;*/
	justify-content: center;
	align-items: center;
}

header {
	background-color: darkgrey;
	border: 5px solid black;
	margin: auto;
	text-align: center;
	width: 100%;
	font-family: "Aldrich", sans-serif;
	color: white;
	text-shadow: 2px 2px 0px black;
}

main {
	margin: 5px 5px auto;
	width: 100%;
}

aside {
	margin: 5px auto;
}

#mainContent {
	width: 90%;
}

}