@font-face {
  font-family: Montserrat-Italic;
  src: url("../fonts/Montserrat-Italic.ttf");
}

@font-face {
  font-family: Montserrat-Light;
  src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
  font-family: Montserrat-LightItalic;
  src: url("../fonts/Montserrat-LightItalic.ttf");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
  font-family: Montserrat-MediumItalic;
  src: url("../fonts/Montserrat-MediumItalic.ttf");
}

@font-face {
  font-family: Montserrat-Regular;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: Montserrat-Thin;
  src: url("../fonts/Montserrat-Thin.ttf");
}

@font-face {
  font-family: Montserrat-ThinItalic;
  src: url("../fonts/Montserrat-ThinItalic.ttf");
}




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
}

.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;
	transition: 0.2s;
}

.buttonEuro:hover {
	background: #71B021;
	color: white;
	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 + 345px);
	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-regular', sans-serif;
	background: transparent;
	display: inline-block;
	cursor: pointer;
	min-width: 75px;
	transition: 0.2s;
}

.buttonArctic:hover {
	background: linear-gradient(to bottom right, #3d88f1, #80cff5);
	color: black;
	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;
	}
	
}