/*stylesheet for archive about page*/

body {
	background-image: url("../images/backgrounds/graybat.png");
	background-repeat: repeat;
}

nav {
	background-color: darkgrey;
	border: 5px solid black;
	width: 200px;
	margin: 20px;
	padding: 10px;
	border-radius: 15px 50px 30px;
	order: 1;
}

header {
	background-color: darkgrey;
	border: 5px solid black;
	margin: 5px auto;
	text-align: center;
	width: 25%;
	font-family: "Aldrich", sans-serif;
	color: white;
	text-shadow: 2px 2px 0px black;
}

main {
	order: 2;
}

#mainContent > h1 {
	text-align: center;
}

footer {
}

p {
	text-indent: 1em;
	font-family: "Calibri", sans-serif;
}

ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	width: 100px;
	text-align: center;
}

#navBar > ul > li {
	margin: 5px;
}

li a {
	display: inline-block;
}

li a:hover {
	background-color: black;
	color: white;
}

/*good ol' flex container*/
.flex-container {
	display: flex;
	flex-direction: row;
	/*background-color: dodgerblue;*/
	justify-content: center;
	align-items: center;
}

.grid-box {
	display: grid;
	align-items: center;
	justify-content: center;
	padding: 5px;
	
}

/*trying to create a custom button appearance but class button isn't working help*/
.navbutton {
	background-color: black;
	border: solid black;
	padding: 5px;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	border-radius: 12%;
}

#socialLinks {
	text-align: center;
}

/*
#navBar {
	border: 5px solid darkblue;
	width: 150px;
	margin: auto;
	padding: 10px;
	text-align: center;
}
*/
#mainContent {
	border: 5px solid black;
	margin: auto;
	width: 75%;
	background-color: lightgrey;
}

#aboutpageText {
	/*border: solid white;*/
	padding: 5px;
}

#socialsBar {
	background-color: darkgrey;
	border: solid black;
	width: 150px;
	margin: 25px;
	padding: 10px;
	border-radius: 50px 15px 30px;
	order: 3;
	text-align: center;
}

#socialsBar > ul {
	margin: auto;
}

#fanficring {
	text-align: center;
}

@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;
}

#mainContent {
	width: 100%;
}

}