/* global styles */
* {
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,body {
	margin: 0;
	padding: 0;
}

button {
	cursor: pointer;
	user-select: none;
	font-family: sans-serif;
}

/* navbar styles */
#navbar {
	background-color: black;
}

#nav_img {
	display: inline-block;	
	transform: translateX(-7%);
}

#nameonly_img {
	max-width: 50%;
	transform: translateY(-7%);
}

#canonly_img {
	max-width: 50%;
	transform: translateX(-8%);
}

#nav_btn_wrapper {
	display: inline-block;
	padding: 15px;
}

#nav_btn_wrapper button {
	margin-right: 10px;
	font-size: 20px;
}

#nav_btn_wrapper button:last-child {
	margin-right: 0 !important;
}

#nav_btn_wrapper button a {
	text-decoration: none;
	color: black;
}

/* mobile layout */
@media screen and (max-width: 750px) {
	#nav_btn_wrapper button {
		margin-right: 5px;
		font-size: 16px;
	}
}