/**
* @author       CatOstrovsky <ska_live@mail.ru>
* @copyright    2018 web-panda
* @description  Basic page styles
* @license      CatOstrovsky
*/
body {
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1f1f1f;
	overflow: hidden;
}
body {
	min-height: 100vh;
	align-items: center;
	justify-content: center;
	width: 100%;
	display: flex;
}
body canvas {
	box-shadow: 0px 0px 20px 0px rgba(251, 251, 251, 0.21);
	border-radius: 25px;
}
#game {
	padding: 20px;
	background: #106d77;
	border-radius: 20px;
	padding-right: 120px;
	position: relative;
}

#game:after {
	content: "";
	position: absolute;
	right: 14%;
	top: 10%;
	transform: translateY(-50%) translateX(-20px);
	width: 20px;
	height: 20px;
	background: #6f3a3a;
	animation: beep .7s ease-in-out infinite;
	border-radius: 50%;
}

#game:before {
	content: "";
	position: absolute;
	right: 0%;
	top: 10%;
	width: 300px;
	height: 100px;
	background: url(../images/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(90deg) translateX(39%) translateY(-85%);
}
@keyframes beep {
	0% { opacity: 1; }
	77% { opacity: 0; }
}

ul {
	margin: 0px;
	padding: 0px;
	padding-left: 20px;
}

h4 {
	margin: 0px;
	margin-right: 20px;
}

h4 {
	margin-bottom: 10px;
}
div {
	color: #fff;
}

body{
	font-family: Arial;
	flex-direction: column;
}
.info{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
@keyframes roateInfinite {
	0% {
	transform: rotate(0deg); }
	34% {
	transform: rotate(10deg); }
	72% {
	transform: rotate(-10deg); }
	100% {
	transform: rotate(0deg); } 
}
.copyright {
	color: #fff;
	font-size: 12px;
	display: block;
	white-space: nowrap;
}
.copyright img {

	max-width: 12px;
}
h1 {
	font-size: 17px;
	color: #fff;
	margin-top: 0px;
	margin-bottom: 5px;
}
a.more {
	margin-bottom: 5px;
	text-decoration: none;
	color: #fae864;
	font-weight: bold;
	font-size: 13px;
}
.shares-wrapper{
	margin: 5px 0px;
	margin-top: 25px;
}
.donate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 40px;
}
.dotate-img {
	animation: roateInfinite linear 1s;
	animation-iteration-count: infinite;
	transform-origin: 50% 50%;
}
img.dotate-img {
	max-width: 50px;
}
div#donate {
	max-width: 100%;
}