	html {
		background-color: #222222;
		background-image:url("SpaceBackground.png") !important;

		background-attachment: fixed;
		background-repeat:no-repeat;
		background-position:center;
		
		background-size: cover;
		background-width: 100%;
		background-height: 100%;
	}
	body {
    /* Убираем скролл */
    overflow: hidden;
          
    /* Убираем лонгтап на IOS */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
	canvas{
/* 		border: 5px solid #acacac;
		border-top: none; */
		box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.5), 
              -10px 10px 10px 0 rgba(0, 0, 0, 0.5);
	}
	
/* Для мобильных устройств */
@media only screen and (max-width: 600px) {
/*   canvas {
  	border: none;
	border-bottom:  5px solid #acacac;
	margin-bottom: -5px;
  } */
}

/* Для планшетов */
@media only screen and (min-width: 600px) and (max-width: 768px) {
/*   body {
    background-color: lightgreen;
  } */
}

/* Для настольных компьютеров */
@media only screen and (min-width: 768px) {
/*   body {
    background-color: lightyellow;
  } */
}