@charset "utf-8";
@import "swipe.css";

/* CSS Initialisierung (generell)*/
* {
	padding:0;
	margin:0;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	box-sizing: border-box;
}
body {
	background-color: #b6c3c9;	/* 75% Lightness von #b0bec5 */
	margin: 0.6em;
	font-family: 'Roboto', sans-serif;
	line-height: 1;
	color: #2b363b;		/* 20% von #b0bec5 */
}
/* Swiper */
.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background-color: #b6c3c9;	/* 75% Lightness von #b0bec5 */
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
figcaption {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8em;
	margin: 0.2em;
}


