:root 
{
	--green: #7cf500;
	--yellow: #daff1c;
	--blue: #00dda8;
	--dark: #273d4b;
	--grey: #cfcfcf;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.2em;
	color: #fff;
	font-family: 'Heebo';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--green);
 	color: #fff; 
}

::-moz-selection 
{
  	background-color: var(--green);
 	color: #fff;
}

h1, h2, h3
{
	font-weight: 500;
	line-height: 1.3;
	font-size: 3em;
}

h2
{
	font-size: 2.2em;
}

.text.big p, .text.big ul
{
	font-size: 1.3em;
}

h1 + p, h2 + p, h2 + ul, p + p, ul + p
{
	margin-top: 1em;
}

#bgCol
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--dark);
	z-index: -100;
}

.wrap
{
	max-width: 1050px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#contentFlex
{
	display: flex;
	width: 100%;
	min-height: 100vh;
	align-items: center;
	justify-content: center;
}

#contentCenter
{
	width: 100%;
}

#logo
{
	max-width: 280px;
	display: block;
	margin: auto;
}

.text-center
{
	text-align: center;
}

.text
{
	margin: 80px 0px;
}

.text p a, .text ul a, #cookieNotice a, form a
{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dashed #fff;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, #cookieNotice a:hover, form a:hover
{
	border-bottom: 1px solid #fff;
	opacity: 0.7;
}

.white h2
{
	color: var(--blue);
}

.white
{
	padding: 80px 0px;
	background-color: #fff;
	color: var(--dark);
	margin: 0;
}

#socialMedia
{
	display: flex;
	justify-content: center;
	margin-left: -40px;
	margin-top: 25px;
}

#socialMedia a
{
	display: inline-block;
	width: 60px;
	height: 60px;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 100px;
	margin-left: 40px;
	background-color: var(--dark);
	transition: all 0.2s;
}

#socialMedia a:hover
{
	transform: scale(1.1);
	background-color: var(--blue);
}

#facebook
{
	background-image: url(facebook.svg);
}

#instagram
{
	background-image: url(instagram.svg);
}

#footer
{
	text-align: center;
	background-color: rgba(0,0,0,0.6);
	padding: 40px 0px;
	font-size: 0.85em;
}

@media all and (max-width: 680px){
	h1
	{
		font-size: 1.6em!important;
	}

	h2
	{
		font-size: 1.4em!important;
	}

	.text.big p, .text.big ul
	{
		font-size: 1em!important;
	}

	#logo
	{
		max-width: 150px!important;
	}

	#socialMedia
	{
		margin-left: -20px!important;
	}

	#socialMedia a
	{
		margin-left: 20px!important;
	}
}

@media all and (max-width: 900px){
	.text
	{
		margin: 40px 0px;
	}

	.white
	{
		padding: 40px 0px;
		margin: 0;
	}

	#footer
	{
		padding: 25px 0px;
	}

	#socialMedia
	{
		margin-left: -25px;
		margin-top: 20px;
	}

	#socialMedia a
	{
		width: 45px;
		height: 45px;
		margin-left: 25px;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.8em;
	}

	.text.big p, .text.big ul
	{
		font-size: 1.2em;
	}

	#logo
	{
		max-width: 220px;
	}
}