#success {
	font-family: "Courier New";
	font-weight: bold;
	color: green;

}

#warning {
	font-family: "Courier New";
	font-weight: bold;
	color: red;
}

.navItem {
	color: white;
	text-decoration: none;
	font-family: helvetica, sans-serif;
	font-size: 1.2em;
}

.accountRequired {
	color: #003366;
	pointer-events: none;
}

.accountRequired a {
	color: #003366;
	pointer-events: none;
}

button {
	background-color: dodgerblue;
	border-color: dodgerblue;
	color: white;
	padding: 1em;
		
}

button a {
	color: white;
	text-decoration: none;

}

h1 {
	margin-top: 3em;
	font-family: arial, sans-serif;
	text-align: center;
}

h2 {
	font-family: arial, sans-serif;
	text-align: center;
}

img {
	z-index: 0;
}

li {
	display: inline;
	list-style-type: none;
	padding-right: 25px;
}

nav {
	position: fixed;
	z-index: 100; /* It should never be possible for something to overlay the nav */
	top: 0;
	left: 0;
	width: 100%;
	background-color: dodgerblue;
	padding: 0.5em 0.5em;
}

/* Mobile specific */
@media only screen and (max-width: 600px) {
	p, button, label {
		font-size: 0.8em;
	}
	.navItem {
		font-size: 0.9em;
	}
	nav {
		padding: 0.3em 0.3em;
	}
	ul {
		display: flex;
		flex-wrap: wrap;
	}
}
