html, body {
	margin: 0px;
	padding: 0px;
	background: black;
	width: 100vw;
	height: 100vh;
	color: white;
}

body {
	background-image: url("../images/desktop_backing.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.snow {
	filter: blur(2px);
	opacity: 0.6;
	pointer-events: none;
	position: fixed;
	z-inde: 100;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.euroLogo {
	background-image: url("../images/euro_black.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top left;
	position: fixed;
	top: 10vh;
	left: 7vw;
	width: 460px;
	height: 100px;
}

.buttonEuro {
	text-decoration: none;
	border-radius: 9px;
	position: fixed;
	top: calc(10vh + 76px);
	left: 7vw;
	border: 2px solid #71B021;
	color: black;
	height: 30px;
	padding-top: 11px;
	padding-left: 45px;
	padding-right: 45px;
	text-align: center;
	font-size: 14px;
	font-family: 'Montserrat-regular', sans-serif;
	background: transparent;
	display: inline-block;
	margin: 0;
	cursor: pointer;
}

.buttonEuro:hover {
	background: #71B021;
	color: white;
	font-family: 'Montserrat-light', sans-serif;
	cursor: pointer;
}






#arcticLogo {
	background-image: url("../images/arctic_white.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;
	position: fixed;
	bottom:  calc(10vh + 40px);
	right: calc(7vw + 150px);
	width: 370px;
	height: 110px;
}

#buttonArctic {
	border-radius: 8px;
	position: fixed;
	bottom: 10vh;
	right: calc(7vw + 327px);
	left: auto;
	overflow: hidden;
	color: white;
	height: 30px;
	padding-top: 13px;
	padding-left: 47px;
	padding-right: 47px;
	padding-bottom: 2px;
	text-align: center;
	font-size: 14px;
	font-family: 'Montserrat-light', sans-serif;
	background: transparent;
	display: inline-block;
	cursor: pointer;
	min-width: 94px;
}

#buttonArctic:hover {
	background: linear-gradient(to bottom right, #3d88f1, #80cff5);
	color: black;
	font-family: 'Montserrat-regular', sans-serif;
	cursor: pointer;
}

#buttonArctic:after {
	border-radius: 8px;
	content: "";
	position: absolute;
	width: calc(100% - 4px);  
	height: calc(100% - 4px);  
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
	box-shadow: 100px 100px 100px 100px #80cff5, -100px -100px 100px 100px #3d88f1;
	cursor: pointer;
}

#buttonArctic:hover:after {
	box-shadow: 0;
	cursor: pointer;
}

@media only screen and (max-width: 1300px) {
	
	#arcticLogo {
		right: 7vw;
	}
	
	#buttonArctic {
		right: calc(7vw + 177px);
	}
	
}

@media only screen and (max-width: 560px) {
	
	body {
		background-image: url("../images/mobile_backing.jpg");
	}
	
	.euroLogo {
		left: 8vw;
		width: 84vw;
	}
	
	.buttonEuro {
		top: calc(10vh + 76px);
		left: 8vw;
	}
	
	#arcticLogo {
		right: 8vw;
		width: 84vw;
		height: 130px;
		background-position: center;
	}
	
	#buttonArctic {
		right: auto;
		left: 8vw;
	}
	
}





#CSoverlay {
	opacity: 0;
	position: fixed;
	left: 0;
	z-index: 80;
	top: 100vh;
	width: 100vw;
	height: 100vh;
	transition: 0.5s;
	background: grey;
	pointer-events: none;
	background-image: url("../images/coming_backing.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#closeCS {
	width: 15px;
	height: 15px;
	background-image: url("../images/close.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 8vw;
	top: 60px;
	cursor: pointer!important;
}

.arcticCS {
	background-image: url("../images/arctic_blue.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top left;
	position: absolute;
	top: 12vh;
	left: 8vw;
	width: 84vw;
	height: 150px;
}

.CStext {
	color: #0e4170;
	font-family: 'Montserrat', sans-serif;
	position: absolute;
	top: calc(12vh + 200px);
	left: 8vw;
	font-size: 37px;
	line-height: 58px
}

.powered {
	width: 200px;
	height: 20px;
	background-image: url("../images/powered.png");
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 8vw;
	bottom: 60px;
	cursor: pointer!important;
}







@media only screen and (max-width: 950px) {

	#CSoverlay {
		background-position: 80% 50%;
	}

}

@media only screen and (max-width: 800px) {
	
	.arcticCS {
		top: 20vh;
	}
	
	.CStext {
		top: calc(20vh + 150px);
	}
	
}