
nav {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 8px 0;
	text-align: center;
}

nav span {
	position: relative;
	top: -8.6px;
	font-family: Catamaran, Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 14.2857px;
	margin: 3px;
}

nav img {
	width: 24px;
}

.home-button {
	padding: 8px;
	height: 24px;
	display: inline-block;
	font-size: 0.9em;
	text-align: center;
	outline: none;
	text-decoration: none;
	transition: all 0.4s;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: 5px;
}

.home-button:hover,
.home-button:active {
	text-decoration: none;
}



/* Desktop */
@media screen and (min-width: 801px) {

	nav {
		position: fixed;
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		padding: 8px 0;
		box-shadow: 0 0 0 black;
		background: rgb(0, 0, 0); /* Fallback for older browsers without RGBA-support */
		background: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(10px);
		text-align: center;
	}
}

/* Mobile */
@media (max-device-width: 568px), (max-width: 800px) {

	nav {
		background-color: #272D3E;
	}

}