/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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



/*END RESET*/


@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,700;1,400;1,700&family=Signika:wght@600;700&display=swap');

body {
	font-size: 24px;
	font-family: 'Raleway', sans-serif;
	line-height: 1.4;
	color: #fff;
	position: relative;
}

body:after {
	content:"";
	background-image: url(img/leaves.png);
	background-repeat: repeat-y;
	background-size: cover;
	background-position: center;
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;left: 0;
	pointer-events: none;
	z-index: 6;
	animation: falling 15s linear infinite;
}

@keyframes falling {
	0%{
		background-position-y: 0;
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(4deg);
	}
	50%{
		transform: rotate(-6deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100%{
		background-position-y: 100vh;
		transform: rotate(0deg);
	}
}

h1 {
	font-family: 'Signika', sans-serif;
	font-size: 60px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 40px;
}

h2 {
	font-family: 'Signika', sans-serif;
	font-weight: 600;
	font-size: 42px;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 20px;
	border-bottom: 6px solid #f33e32;
}

h3 {
	font-family: 'Signika', sans-serif;
	font-weight: 600;
	font-size: 36px;
	margin-bottom: 20px;
	color: #fff;
	line-height: 1.1;
}

main {
	height: 100vh;
	width: 100%;
	position: relative;
	text-align: center;
	background: #0a1b11;
}

.bg {
	background: url(img/bg1080p.jpg) no-repeat center center;
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
	top: 0;left: 0;
	opacity: 0.8;
}

.wrap {
	max-width: 80%;
	margin: 0 auto;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	position: relative;
	z-index: 2;
}


h3 i {
	margin-right: 20px;
	font-size: 48px;
	vertical-align: middle;
	color: #2D88FF;
	position: relative;
}

h3 i:after {
	content:"";
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 1px;left: 1px;
	height: calc(100% - 2px);
	width: calc(100% - 2px);
	z-index: 0;
}

h3 i:before {
	position: relative;
	z-index: 2;
}

a {
	color: #fff;
}
a:visited, a:hover {
	color: #fff;
}

.logo {
	margin-bottom: 40px;
}
.logo img {
	max-width: 90%;
	margin: 0 auto;
	display: block;
}

p {
	font-weight: bold;
}