html, body {

	padding: 0;
	margin: 0;


}

body {
	scroll-snap-type: y mandatory;
}

.page {
	height: 100vh;
	position: relative;
	padding: 0;
	margin: 0;
	scroll-snap-align: start;
}

.main {
	width: 100%;
	overflow: hidden;
	position: absolute;

	top: 50%;
	transform: translateY(-60%);
}

#firstpage {

	background-image: url("images/daniewahl_2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 80% 40%;
}

.arrow_down {

	bottom: 0;
	position: absolute;
	left: 50%;
	cursor: pointer;
	transform: translateX(-50%);

}

.header {
	margin: auto;
	position: relative;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
	border-top: black 5px solid;
	border-bottom: black 5px solid;
	vertical-align: middle;
}

h1 {
	display: inline-block;
	color: wheat;
	margin: 0 0 0 30px;
	/* source: https://fonts.google.com/specimen/Source+Sans+Pro?selection.family=Source+Sans+Pro */
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 100;
	font-style: normal;
	font-size: 60px;
	text-transform: uppercase;
	vertical-align: middle;
}

.logo_image {
	height: 75px;
	width: 75px;
	padding: 0 0 0 10%;
	display: inline-block;
	vertical-align: middle;
	margin-top: 5px;
	margin-bottom: 5px;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

.credits {

	position: absolute;
	bottom: 0;
	right: 10px;
	font-family: 'Source Sans Pro', sans-serif;
	color: wheat;
	font-size: 16px;

}

.credits > a {
	color: wheat;
	font-weight: 600;
}

.credits > a:hover {
	color: hotpink;
}

#secondpage {
	/*background: linear-gradient(to bottom right, white, lightblue);*/
	background-image: url("images/alex.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 70% 10%;

}

#coming_soon {
	color: wheat;
	padding: 0;
	margin: 0;

	position: relative;
	width: 100%;
	padding-left: 10%;

}

@media (max-width: 600px) {

	h1 {
		text-align: center;
		padding-left: 0;
		margin-left: 0;
		font-size: 50px;
	}

	.logo_image {
		margin: auto;
		padding: 0;
	}

	.header {
		text-align: center;
	}

	/*
		.firstname {
			display: none;
		}*/
	.logo_image {
		height: 60px;
		width: 60px;
	}

	body {
		overflow: hidden;
	}

	.credits {
		font-size: 12px;
	}

	#coming_soon {
		position: relative;
		padding: 0;
		text-align: center;
	}

	.mobile_hidden {
		display: none;
	}

	.arrow_down {
		bottom: 30px;
	}
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}