
* {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	height: auto;
	margin: 0 1rem;
}

h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.9rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}
h2 {
	font-family: 'Inria Serif', serif;
	font-size: 1.3rem;
	font-weight: 300;
	margin: 0;
}
h3 {
	font-weight: 600;
	font-size: 0.8rem;
	margin: 0;
}

img {
	display: block;
	width: 100%;
	margin: 2rem 0;
}

main {
  max-width: 768px;
  margin: auto;
}

html {
	scroll-behavior: smooth;
}

#landing-text {
	display: flex;
	flex: 0 1 100vw;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#landing-text-inner {
	padding: 1rem;
}

#landing-text-inner ul {
	padding-top: 1rem;
	list-style-type: none;
}

#landing-text-inner ul li {
	text-decoration: none;
	font-weight: 400;
	text-transform: uppercase;
}

#landing-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	flex: 0 1 100vw;
	margin: 0;
  }

#landing-image img {
	margin: 0;
}  

.gallery {
	display: flex;
	width: auto;
	overflow: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory; /* Horizontal scrollen und Snap Points streng einhalten */
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
}
  
.gallery::-webkit-scrollbar { 
    display: none; /* Chrome Safari */
}

#container img {
	height: 100%;
	scroll-snap-align: center; /* Die Mitte eines Bildes ist der Snap Point */
}

#button {
	display: flex;
}

#button img {
	width: auto;
	margin-top: -1rem;
	margin-bottom: 1.5rem;
}

#button p {
	font-size: 0.7rem;
	margin-top: -1rem;
	margin-bottom: 1.5rem;
	margin-right: 0.5rem;
}

.navbutton {
	padding: 0.5rem;
	display: inline-block;
	text-decoration: none;
	color: black;
	width: 100px;
	border: 1px black solid;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.navbutton:hover {
	background: whitesmoke;
	color: silver;
	border: 1px whitesmoke solid;
}

.back-to-top {
	border: #000 1px solid;
	color: black;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 0.6rem;
	z-index: 1000;
   }

.back-to-top:hover {
	cursor: pointer;
	text-decoration: underline 1px solid black;
}

#header {
	padding: 1.5rem;
	text-align: center;
	background-color: black;
	color: khaki;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

#header h2 {
	font-size: 1.5rem;
	font-weight: 700;
}

.caption {
	font-size: 0.8rem;
	color: black;
	text-align: center;
	background-color: whitesmoke;
	padding: 0.5rem;
}

#about {
	margin-bottom: 3.5rem;
}

#about-text {
	text-align: center;
	margin: auto;
	padding-top: 1.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

#about-text h3 {
	font-family: 'Inria Serif', serif;
	font-size: 1.3rem;
	font-weight: 700;
	padding-bottom: 0.3rem;
}

#about-text p {
	font-size: 1.1rem;
}

footer {
	text-align: center;
	margin: auto;
	max-width: 700px;
	background-color: khaki;
	padding-top: 1.5rem;
	padding-left: 3rem;
	padding-right: 3rem;
	padding-bottom: 5rem;
}

#contact {
	display: block;
	padding-bottom: 0.5rem;
	width: 170px;
	margin: auto;
	margin-bottom: 1rem;
}

#contact h3 {
	font-size: 1rem;
	font-family: 'Inria Serif', serif;
	font-weight: 700;
}

.email {
	text-decoration: none;
	color: black;
	text-decoration: underline;
	display: inline-block;
	font-weight: 400;
}

.email:hover {
	color: darkkhaki;
	text-decoration: underline;
	transition: color 600ms ease;
}

footer p {
	text-transform: uppercase;
	font-size: 0.6rem;
}

.imprint {
	text-decoration: none;
	color: black;
	text-transform: uppercase;
	text-decoration: underline;
	font-size: 0.6rem;
}

.imprint:hover {
	color: darkkhaki;
	text-decoration: underline;
	transition: color 600ms ease;
}

#disclaimer {
	text-align: center;
	padding: 1.5rem;
	color: #999;
	font-size: 1em;
	font-weight: 300;
	margin: 0;
}

#disclaimer h1 {
	font-size: 1.2rem;
	font-weight: 200;
	text-transform: uppercase;
	margin-bottom: 20px;
	margin-top: 20px;
}

#disclaimer h2 {
	font-size: 0.9rem;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 5px;
	margin-top: 15px;
}

#disclaimer p {
	margin-bottom: 10px;
}

/* Screen sizes 500px and up */
@media (min-width: 480px) {

	h1 {
		font-size: 2.7rem;
	}

	h2 {
		font-size: 1.5rem;
	}
	
	img {
		margin: 1.5rem 0;
	}

	.smaller500 {
		width: 50%;
		margin: auto;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	#about-text h3 {
		font-size: 1rem;
		font-weight: 600;
		padding-bottom: 0.3rem;
	}
	
	#about-text p {
		font-size: 0.9rem;
	}
}
/* Screen sizes 768px and up */
@media (min-width: 768px) {
	h1 {
		font-size: 4.3rem;
	}

	h2 {
		font-size: 1.8rem;
	}
	#disclaimer {
		padding: none;
	}
}