@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Quintessential&family=Special+Elite&display=swap');

body {
	font: 100% "Google Sans", sans-serif, Arial, Helvetica;
	margin: 0px;
	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: center;
}

p {
	text-align: left;
	line-height: 1.5em;
}

#navigation {
	color: #FFFFFF;
	margin: 30px 0;
	height: 45px;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}

.menu-item {
	color: white;
	background-color: rgb(112, 48, 160);
	padding: 7px 7px 3px 7px;
	margin: 0 2px;
}

.menu-item a,
.menu-item a:visited {
	font-family: 'Special Elite', cursive;
	color: white;
	text-decoration: none;
}

.menu-item:hover {
	background-color: rgb(76, 31, 110);
}

.fascinate-font {
	font-family: 'Fascinate Inline', cursive;
}

.quint-font {
	font-family: 'Quintessential', cursive;
}

.special-elite-font {
	font-family: 'Special Elite', cursive;
}