/*stylesheet for fanfic directory page*/

body {
	background-image: url("../images/backgrounds/graybat.png");
	background-repeat: repeat;
}

main {
	order: 2;
	width: 50%;
	font-family: Arial, Helvetica, sans-serif;
}

header {
	font-family: "Aldrich", sans-serif;
	border: 5px solid black;
	background-color: gray;
	margin: auto;
	width: 50%;
}

header>h1 {
	text-align: center;
	color: white;
	text-shadow: 2px 2px 0px black;
}

footer {
	background-color: powderblue;
	border: 5px solid black;
}

nav {
	style="order: 1;"
}

.flex-container {
	display: flex;
	flex-direction: row;
	/*background-color: dodgerblue;*/
	justify-content: center;
	align-items: center;
	margin: 5px auto;
}

.navbarlink {
	background-color: darkgrey;
	border: 1px solid white;
	margin: 5px;
}

#navBar {
	background-color: gray;
	border: 5px solid black;
	width: 100px;
	padding: 20px;
	margin: auto;
	border-radius: 15px 50px 30px;
	font-family: "Arial", sans-serif;
}

#navbarLinks {
	text-align: center;
}

#directory {
	background-color: lightgray;
	border: 5px solid black;
	margin: auto 10px;
	padding: 50px;
}

#directory>h2 {
	margin: 0;
}

#directory>dl {
	margin: 0 0 10px 0;
}

details {
	background-color: darkgrey;
	border-radius: 50px;
	padding: 10px;
}

details summary::marker,
:is(::-webkit-details-marker) {
	content: "file_download";
	font-family: "Material Icons";
	font-weight: bold;
	font-size: 25px;
}

details[open] summary::marker {
	content: "file_upload";
	font-family: "Material Icons";
	font-weight: bold;
}

a:hover {
	color: white;
	background-color: black;
}

a:link {
	color: white;
	text-decoration: none;
}

a:visited {
	color: white;
}

@media screen and (max-width: 600px) {
.flex-container {
	flex-direction: column;
}

header {
	width: 100%;
}

main {
	width: 100%;
}

#directory {
	padding: 5px;
	font-size: 25px;
	margin: 5px auto;
}

#directory > h2 {
	text-align: center;
}

.navbarlink {
	font-size: 20px;
}

}