/* Website design, bouw, beheer hosting, SEO , story telling - www.ClarifyConsult.nl */
/* Versie 1.0 <klantnaam> 2022 */

@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@400;600;700&display=swap');


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

:root {
	--primary-color: #566e61;
	--primary-accent: #030e12;
	--secondary-color: #fcde67;
	--secondary-accent: #6c8a79;
	--text-wit: #fafafa;
	--bg-1: rgba(86, 110, 97, .4);
	--bg-2: rgba(23, 37, 42, .7);
	--bg-3: rgba(198, 192, 217, .4);
}

body {
	font-family: 'Anek Bangla', sans-serif;
	line-height: 1.6;
	color: var(--text-wit);
	background-color: var(--primary-color);
}

a,
a:link,
a:visited {
	color: #FFFAFA;
	text-decoration: none;
}

a:hover {
	color: var(--primary-accent);
}

ul li {
	list-style: none;
	text-align: center;
}

ul li:nth-child(1) {
	color: var(--secondary-color);
}

/* Timer landing page */
.landing {
	position: relative;
	/*background-image: url(/images/Birds_1366x768.jpg);*/
	background-size: cover;
	background-position: center;
	height: calc(100vh - 30px);
	display: flex;
	padding: 1.5em;
	flex-direction: column;
	justify-content: space-between;
}

.landing-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 20vh 0 5vh;
}

.landing h1 {
	color: var(--text-wit);
	font-weight: 600;
	letter-spacing: 1.2px;
	margin-bottom: .5em;
	text-align: center;
}

.landing h2 {
	letter-spacing: 1.2px;
	margin-bottom: .5em;
	text-align: center;
}

.landing h3 {
	margin-bottom: 1em;
}

.landing p {
	color: var(--text-wit);
	font-size: 20px;
}

/*.landing-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	text-align: center;
	padding: 5em 1.5em 1em;
}*/

/* was countdown */
.counter {
	font-size: 20px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5em;
}

/* was countdown */
.counter p {
	padding: 15px;
	border: 2px solid #fff;
	border-radius: 10px;
	margin: 5px;
	background: var(--secondary-color);
	color: var(--primary-accent);
	letter-spacing: 1.2px;
	text-align: center;
}

.footer-bottom {
	padding: 1em 2em;
	background: var(--primary-color);
	color: var(--text-wit);
	display: flex;
	font-size: 16px;
	justify-content: center;
	align-items: center;
	border-top: 1px solid var(--secondary-color);
}

.footer-bottom p {
	text-align: center;
	font-size: 1em;
}

/*
.snow-bg {
   position: relative;
}

.snow-bg:after {
   content: '';
   display: block;
   position: absolute;
   z-index: 2;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   pointer-events: none;
   background-image: url('https://library.elementor.com/resources/christmas-snow-effect/s1.png'), url('https://library.elementor.com/resources/christmas-snow-effect/s2.png'), url('https://library.elementor.com/resources/christmas-snow-effect/s3.png');
    animation: snow 10s linear infinite;
}

@keyframes snow {
 0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
 50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
 100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}


@media only screen and (max-width: 600px) {
	.landing-inner {
		text-align: center;
	}
}
*/
/* Mobile version */
@media only screen and (max-width: 600px) {	
	
	.landing h2 {
		font-size: 14px;
	}
	
	.counter p {
		font-size: 14px;
	}

}