body {
	font-family: 'Montserrat', sans-serif;
}
.container {
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}
.wave {
	position: absolute;
	width: 100%;
	overflow: hidden;
	height: 100%;
	bottom: -1px;
	background: #000000;
	z-index: 5;
}
.mainText img {
	width: 80%;
    margin: 1px auto;
    display: block;
}
.mainText {
	position: absolute;
	z-index: 99;
	top: -25%;
	left: 50%;
	transform: translate(-50%, 50%);
	text-align: center;
}
.mainText h2 {
	font-family: 'Orbitron', sans-serif;
	color: #fff;
	font-size: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}
.mainText p {
	color: #fff;
	font-size: 18px;
	line-height: 3.9;
	font-family: montserrat;
}
.mainText a {
	text-decoration: none;
	background: #fff;
	color: #000;
	padding: 10px 30px;
	display: inline-block;
	font-family: montserrat;
	font-weight: 600;
	text-transform: uppercase;
}
.single-wave {
	position: absolute;
	left: 0;
	width: 200%;
	height: 100%;
	background-repeat: repeat no-repeat;
	background-position: 0 bottom;
	transform-origin: center bottom;
	background-size: 50% 80px;
	animation: animate 18s linear infinite;
}

@keyframes animate {
	0% {
		transform: translateX(0) translateZ(0) scaleY(1);
	}
	50% {
		transform: translateX(-25%) translateZ(0) scaleY(0.55)
	}
	100% {
		transform: translateX(-50%) translateZ(0) scaleY(1)
	}
}
