body {
	background-color: #fff;
	color: #333;
	font-family: 'Rubik', sans-serif;
	font-size: 20px;
	padding-top: 0; /* Remove any padding */
	margin-top: 0; /* Remove any margin */
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100; /* Increase z-index */
}

#floating-logo {
	position: absolute;
	display: block;
	width: 275px;
	height: 125px;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 50; /* Logo should be on top of skyline but below navbar */
}

.skyline {
	background-color: red; /* Keep this for testing */
	background-image: url('images/skyline2.jpg');
	height: 100vh;
	width: 100vw;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	margin-top: 0;
	display: block;
}