html, body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
html {
	background: url(../images/weihnachten.png) left bottom fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

body {
	background: url(../images/weihnachten.png) left bottom fixed;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	align-content: center;
}

.container-fluid {
	max-width: 350px;
	width: 80vw;
	padding: 0px;
	color: white;
	box-sizing: border-box;
	margin: unset;
	margin-right: 50px;
}

@media screen and (orientation: portrait) {
	.container-fluid {
		width: 80vw;
	}
}
a, a:hover {
	text-decoration: none;
}
h1 {
	font-size: 22px;
	font-family: 'slabo_13pxregular', serif;
	color: rgb(255, 255, 255);
}
figure.logo {
	max-width: 120px;
	margin: 0 auto 30px auto;
}

img {
	width: 100%;
	height: auto;
}

.bg-overlay-close {
	background: #81b92f;
	border: 2px solid white;
	border-radius: 10px;
	position: relative;
	padding: 15px 35px 15px 20px;
	opacity: 0;
	transition: all 900ms ease-in-out;
	-webkit-transition: all 900ms ease-in-out;
}
.bg-overlay-close.visible {
	opacity: 1;
	transition: all 900ms ease-in-out;
	-webkit-transition: all 900ms ease-in-out;
}

.bg-overlay-close p {
	font-size: 12px;
}

.bg-overlay-close a, .bg-overlay-close a:hover {
	color: white;
}

.icon-cancel-circled {
	position: absolute;
	font-size: 35px;
	top: 15px;
	right: 10px;
	cursor: pointer;
	display: block;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	display: block;
	background: #81b92f;
	cursor: pointer;
}

.icon-cancel-circled::before {
	margin: -10px 0 0 0;
	padding: 0;
	position: relative;
	top: -10px;
}

.icon-angle-circled-right {
	font-size: 25px;
	display: block;
	text-align: right;
	margin: 5px -35px -10px 0;
}


@media screen and (min-width: 580px) {
	.container-fluid {
		max-width: 370px;
		margin-right: 50px;
	}
}

@media screen and (min-width: 768px) {
	html, body {

	}
	.container-fluid {
		max-width: 400px;
		margin-right: 100px;
	}
	h1 {
		font-size: 30px;
	}
	.bg-overlay-close p {
		font-size: 14px;
	}
}

@media screen and (min-width: 960px) {
	.container-fluid {
		max-width: 480px;
	}
	.bg-overlay-close p {
		font-size: 16px;
	}
}

@media screen and (min-width: 1350px) {
	.container-fluid {
		max-width: 580px;
		margin-right: 120px;
	}
}

