html {
    height: 100%;
}
body {
    height: 100%;
}
#splash_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: #b4dfef;
  background: -moz-linear-gradient(top, #b4dfef 0%, #edf0ee 30%, #e3dfcd 38%, #7ab45e 49%, #7ab45e 53%, #b8d346 72%, #b8d346 77%, #b8d346 82%, #749b2a 100%);
  background: -webkit-linear-gradient(top, #b4dfef 0%,#edf0ee 30%,#e3dfcd 38%,#7ab45e 49%,#7ab45e 53%,#b8d346 72%,#b8d346 77%,#b8d346 82%,#749b2a 100%);
  background: linear-gradient(to bottom, #b4dfef 0%,#edf0ee 30%,#e3dfcd 38%,#7ab45e 49%,#7ab45e 53%,#b8d346 72%,#b8d346 77%,#b8d346 82%,#749b2a 100%);

  background-image: url(preloader_bg.png);
  background-repeat:  no-repeat;
  background-position:  center;
  background-size: cover;

  border-radius: inherit;
}


#GameDiv {
  width: 800px;
  height: 450px;
  margin: 0 auto;
  background: black;
  position:relative;
  border:none!important;
  /* border-radius: 10px; */
  box-shadow: none!important;
  overflow: hidden;
}

#loading_overlay_back {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #76342e;
}

.overlay {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #76342e;
}