/* General */
body {
	position: absolute;
	width: 100%;
	min-height: 100%;
	overflow: auto;
	background-color: black;
	margin: 0px;
	padding: 0px;
	color: white;
	padding-bottom: 50px;
	box-sizing: border-box;

	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		"Helvetica Neue",
		Arial,
		"Noto Sans",
		sans-serif,
		"Apple Color Emoji",
		"Segoe UI Emoji",
		"Segoe UI Symbol",
		"Noto Color Emoji";
}

a {
	color: white;
	text-decoration: none;
}

.fancy {
	font-family: "Jim Nightshade", cursive;
	font-weight: 400;
	font-style: normal;
}

/* Header  */
header {
	height: 195px;
	width: 100%;
	position: relative;
	text-align: center;
	background: #0444fc
		url(https://www.fireflyartscollective.org/wp-content/uploads/2016/02/header-repeat.jpg)
		top center;
}

header .logo {
	padding-left: 75px;
	background-image: url(../images/logo.png);
	height: 83px;
	background-repeat: no-repeat;
	width: 450px;
	position: relative;
	top: 30px;
	margin: 0px auto;
	color: #fded2f;
}

header .logo .fancy {
	font-size: 75px;
	margin-left: -25px;
	margin-top: -25px;
	position: relative;
	top: -10px;
}

header nav {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 52px;
	background-color: #1a2a63;
	display: flex;
	justify-content: center;
}

header nav .nav-items {
	display: flex;
	align-items: center;
}

header nav .nav-item {
	flex: 1;
	padding: 0px 30px;
}

header nav .sub-item {
}

footer {
	position: absolute;
	bottom: 0px;
	background-color: #304ea0;
	width: 100%;
	height: 50px;
	padding: 15px 30px;
	box-sizing: border-box;
}
