html, body {
	padding: 0px;
	margin: 0px;
}

#navbar {
	background-color: #fff;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	
	margin: 0px;
	padding: 0px;
	padding-top: 5px;
	width: 100%;
}

#navbar img, #navbar nav {
	margin: 0px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#navbar img {
	height: 80px;
	margin-left: 15px;
	margin-right: 15px;
}

#navbar .nav-button {
	display: none;
	width: 100%;
	height: 33px;
	background-image: url('3-lines.svg');
	background-repeat: no-repeat;
	background-size: auto 61%;
	background-position: center center;
	cursor: pointer;
}

#navbar nav {
	display: block;
	flex-grow: 1;
}

#navbar ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

@media (max-width: 1100px) {
	#navbar {
		justify-content: center;
		flex-direction: column;
	}
	#navbar nav {
		overflow: hidden;
		height: auto;
		max-height: 0px;
		transition: max-height 250ms ease 0ms;
	}
	#navbar .nav-button {
		display: block;
	}
	#navbar ul {
		flex-wrap: nowrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		align-content: flex-start;
		list-style-type: none;
		padding: 0px;
		margin: 0px;
	}
}

@media (min-width: 1101px) {
	/* The JS can change these when the size is less that 1100px, therefore we need to make sure they reset afterwards. */
	#navbar nav {
		overflow: visible !important;
		max-height: unset !important;
	}
}

#navbar li {
	margin: 0px;
	margin-top: 2px;
	margin-bottom: 2px;
}

#navbar>nav a {
	display: block;
	color: #0f71aa;
	text-decoration: none;
	font-size: 1.3em;
	margin: 0px;
	margin-left: 15px;
	padding: 8px;
	padding-left: 12px;
	padding-right: 12px;
	border-style: solid;
	border-width: 2px;
	border-radius: 3px;
	border-color: transparent;
	font-family: 'Josefin Sans', sans-serif;
}

#navbar>nav a:hover {
	border-color: rgba(15, 113, 170, 0.75);
}

#navbar>nav a.currentpage {
	border-color: rgb(15, 113, 170);
}

/*#navbar-donate-button {
	padding: 8px;
	padding-left: 15px;
	padding-right: 15px;
	
	border-style: solid;
	border-radius: 4px;
	border-width: 3px;
	border-color: #165900;
	background-color: #41d611;
	color: #1b4e0a;
	text-decoration: none;
	font-size: 1.15em;
	text-align: center;
	
	margin-right: 30px;
	margin-left: auto;
	
	font-family: 'Indie Flower', cursive;
	transition: all 700ms ease-in-out;
}

#navbar-donate-button:hover {
	border-radius: 12px;
	background-color: #41ee22;
	color: #1b6e0a;
	font-weight: bold;
}*/
