body{
	padding: 0;
	margin: 0;
	font-family: 'Rubik Mono One', sans-serif;
	background: black;
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #8cdea2;
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #3ba343;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}




.container{
	width: 100vw;
	height: 100vh;
	margin: 0 auto;
	background: url(../img/bg.png);
	background-size: 100%;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
img{
	position: relative;
	width: 150px;
	height: 150px;
	animation-name: appear
	;
	animation-duration: 1s;
}
h1{
	color: white;
	font-size: 7vw;	
	margin: 0;
	position: relative;
	top: -1000px;
	animation-name: appear;
	animation-duration: 1s;
	animation-delay: 0.4s;
	animation-fill-mode: forwards;
}
span{
	color: white;
	font-size: 3.5vw;
	font-weight: bold;
	margin-bottom: 50px;
	position: relative;
	top: -1000px;
	animation-name: appear;
	animation-duration: 1s;
	animation-delay: 0.7s;
	animation-fill-mode: forwards;
}
a{
	width: 16vw;
	height: 3.5vw;
	text-align: center;
	vertical-align: center;
	color: white;
	text-decoration: none;
	font-size: 3vw;
	font-weight: bold;
	border: 5px solid #F2EC5C;
	padding: 20px 30px;
	opacity: 0;
	animation-name: sizing;
	animation-duration: 1s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
	position: relative;
	transition: 1s;
}
.line{
	position: absolute;
	background: #308c27;
	display: inline-block;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
.line1{
	width: 0;
	height: 5px;
	top: -5px;
	left: -5px;
}
.line2{
	height: 0;
	width: 5px;
	top: -5px;
	right: -5px;
}
.line3{
	width: 0;
	height: 5px;
	bottom: -5px;
	right: -5px;
}
.line4{
	height: 0;
	width: 5px;
	bottom: -5px;
	left: -5px;
}
a:hover{
	transform: translateY(-10px);
}
a:hover .line1, a:hover .line3{
	animation-name: hover_horizontal;
}
a:hover .line2, a:hover .line4{
	animation-name: hover_vertical;
}
@keyframes appear{
	from{
		top: -1000px;
	}
	to{
		top: 0;
	}
}
@keyframes sizing{
	from{
		width: 0;
		opacity: 0;
		color: transparent;
	}
	50%{
		width: 16vw;
		color: transparent;
	}
	to{
		color: white;
		opacity: 1;
	}
}
@keyframes hover_vertical{
	from{
		height: 0;
	}
	to{
		height: calc(100% + 10px);
	}
}
@keyframes hover_horizontal{
	from{
		width: 0;
	}
	to{
		width: calc(100% + 10px);
	}
}