body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-family: Roboto, Arial, sans-serif;
}
a {
	color: #3b5998;
	text-decoration: none;
}
#navbar {
	z-index: 1000;
	position: fixed;
	top: 0;
	width: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 0 auto;
	margin-bottom: 25px;
	font-family: 'Boogaloo', sans-serif;
	font-size: 24px;
    height: 64px;
    background-color: white;
}
#navbar .text {
	padding-left: 10px;
	padding-right: 50px;
}
#navbar img {
	padding-left: 10px;
	height: 40px;
}
#links {
	width: 100%;
	text-align: center
}
#credits {
	width: 90%;
	max-width: 720px;
	align-content: center;
	text-align: center;
	color: white;
	margin: 0 auto;
    padding: 25px 0px 5px 0px;
}
@media screen and (max-width: 1000px) /* Mobile */ {
	#navbar {
		height: 100px;
	}
  #navbar .text {
	padding: 0 auto;
	display: none;
	}
	#navbar img {
	padding-left: 10px;
	padding-right: 10px;
	height: 64px;
}
#links {
	font-size: 200%;
}
#credits {
	font-size: 200%;
}
}