.footer {
	color: white;
}

body {
	background-image: url('assets/images/dots_ORANGE.jpg');
	background-size: cover;
	overflow: auto;
	position: relative;
	min-height: 100vh
}

.coming-soon-content {
	background: white;
	box-shadow: 0 0 3px 0 grey;
	z-index: 2;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-height: 100vh;
	overflow: auto
}

.logo {
	max-width: 250px;
	margin: 0 auto;
	display: block;
}

.description {
	max-width: 50vh;
	margin: 0 auto;
	text-align: center;
}

#countdown {
	font-size: 2em;
	margin: 20px 0;
}

.countdown-wrapper {
	display: block;
	text-align: center;
}
#countdown .col-12 {
	border-left: 1px solid orange
}
#countdown .col-12:first-of-type {
	border-left: none;
}

#countdown span {
	font-weight: bold;
	font-size: 40px;
	color: #e09026;
}
#countdown span.countdown-label {
	color: black;
	display: block;
	font-size: 26px;
}

.cta {
	font-size: 45px;
	width: 60px;
	height: 60px;
	display:inline-flex;
	color: white;
	background: #ffd600;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	transition: all .3s ease
}

.cta:hover {
	transform: scale(1.2)
}

.cta.email {
	background: orange;
}

.impressum-link {
	color: black;
}


/* Bienen-Container */
.bee-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; /* Klicks gehen durch */
	overflow: hidden;
	z-index: 1;
}

/* Bienen-Stil */
.bee {
	position: absolute;
	width: 30px;
	height: 30px;
	animation: fly infinite linear;
	animation-duration: 6s;
}

/* Fluganimation */
@keyframes fly {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(50px, -30px);
	}
	50% {
		transform: translate(-30px, 50px);
	}
	75% {
		transform: translate(30px, -50px);
	}
	100% {
		transform: translate(0, 0);
	}
}


@media(max-width: 768px) {
	body {
		justify-content: initial;
		align-items: initial;
	}
	#countdown .col-12 {
		border-left: none
	}
}
