body {
	display: flex;
	flex-direction: column;
    justify-content: center;
	min-height: 100vh;
	min-width: 320px;
	max-width: 100%;
	font-size: 16px;
	font-family: 'Lettrix', Arial, Tahoma, Helvetica, sans-serif;
	background-color: #1d1e22;
	color: #aaaebc;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.wrapper {
    position: relative;
    overflow: hidden;
	background-color: #1d1e22;
	width: 100%;
}
.wrapper .mayak {
	width: 100%;
	position: relative;
}
.wrapper .mayak svg {
	display: block;
	width: 30px;
	height: 72px;
	fill: #aaaebc;
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 36px);
	z-index: 100;
}
.wrapper .mayak .lightandbeam {
	position: relative;
	margin: 100px auto;
	width: 100%;
	height: 200px;

	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;

	-webkit-animation: spinY 5s infinite linear;
	-moz-animation: spinY 5s infinite linear;
	animation: spinY 5s infinite linear;
}
.wrapper .mayak .lightandbeam .base {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
}
.wrapper .mayak .lightandbeam .base.beam {
	height: 2px;
	top: 94px;
	background-image: linear-gradient(
		to right,
		rgba(200, 250, 250, 0.5) 5%,
		rgba(150, 150, 150, 0.05) 20%,
		rgba(50, 50, 50, 0) 50%,
		rgba(30, 30, 30, 0) 60%,
		rgba(0, 0, 0, 0)
	);

	-webkit-transform: translate3d(50%, -15px, 0px);
	-moz-transform: translate3d(50%, -15px, 0px);
	transform: translate3d(50%, -15px, 0px);
}
.wrapper .mayak .lightandbeam .base.light {
	top: -21px;
	background-image: radial-gradient(
		circle 15px at 50% 50%,
		rgb(200, 200, 200),
		rgba(50, 75, 75, 0.2),
		rgba(0, 0, 0, 0)
	);

	-webkit-transform: translateX(0px) rotateY(-90deg);
	-moz-transform: translateX(0px) rotateY(-90deg);
	transform: translateX(0px) rotateY(-90deg);
}
.wrapper .about{
	width: 500px;
	max-width: calc(100% - 30px);
	margin: 0 auto;
	padding-bottom: 30px;
	text-align: center;
	font-size: 18px;
	line-height: 24px;
}
@-webkit-keyframes spinY {
	from {
		-webkit-transform: rotateY(0);
		transform: rotateY(0);
	}
	to {
		-webkit-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}

@-moz-keyframes spinY {
	from {
		-moz-transform: rotateY(0);
		transform: rotateY(0);
	}
	to {
		-moz-transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}
@keyframes spinY {
	from {
		transform: rotateY(0);
		transform: rotateY(0);
	}
	to {
		transform: rotateY(360deg);
		transform: rotateY(360deg);
	}
}
