/**
* @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;
min-height: 100vh;
   flex-direction: column;
background: #1d1d1d;
   font-family: Arial;
}
@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;
}
.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%;
}
