/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');


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

/*
	rgb(0,186,219)
	#FF9811
*/

body {
    font-family: 'Google Sans Flex', sans-serif;
	font-size: 16px;
    background:
		url('background.png') no-repeat center center fixed,
        #000;
    background-size: cover;
    color: #FFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 42px 18px;
	position: relative;
	line-height: 1.5;	
}
	body:before {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-indeX: 50;
		background: rgba(0,0,0,0.5);
		background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.77) 100%);
	}



.container {
	position: relative;
	max-width: 720px;
	z-index: 100;
}

.logo {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.logo img {
	display: block;
	margin: 0 0 12px;
	width: 100%;
}

h1 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 900;
	text-shadow: 0 2px 0 rgba(0,0,0,0.66);
}
@media (max-width: 720px) {
	h1 { font-size: 30px; }
}
@media (max-width: 480px) {
	h1 { font-size: 24px; }
}

h2 {
	font-size: 30px;
	line-height: 1.3;
	font-weight: 900;
	text-shadow: 0 2px 0 rgba(0,0,0,0.66);
	color: #FF9811;
}
@media (max-width: 720px) {
	h2 { font-size: 24px; }
}
@media (max-width: 480px) {
	h2 { font-size: 18px; }
}

.desc {
	font-size: 16px;
	color: #FFF;
	text-shadow: 0 1px 0 rgba(0,0,0,0.66);
	padding: 24px 0;
}
.desc strong {
	font-weight: 900;
	font-size: 18px;
	margin-bottom: 6px;
	letter-spacing: 0.3px;
}


.micro-cta {
	font-weight: 900;
	color: #FF9811;
	font-style: italic;
	max-width: 320px;
	margin: 0 auto;
}	


.footer {
	font-size: 14px;
	margin: 48px 0 0 0;
}
.footer img {
	max-width: 36px;
	margin: 0 auto 6px auto;
	opacity: 0.66;
}
.footer-small {
	font-size: 12px;
	opacity: 0.66;
}
a {
    color: #6FD3FF;
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover {
    color: #A6E6FF;
	text-decoration: underline;
}
















