body {
	padding: 0;
	margin: 0;
	background: #FCFCFF;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	font-family: 'Source Sans Pro', sans-serif;
}

div {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo {
	margin-top: -100px;
}

.button {
	padding: 0 30px;
	height: 50px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 30px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(#00C8E3,#00E1D9);
	text-decoration: none;
	margin-top: 50px;
}

.skyline {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	object-fit: contain;
	pointer-events: none;
}

@media (max-width: 600px) {
	.logo {
		height: 200px;
	}
	.skyline {
		width: inherit;
		height: 200px;
		object-fit: cover;
		object-position: left;
	}
}