body {
  background-image: url("game_web_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #bce4d0;
  height: 100%;
  min-height: 100vh;
}
.top-bar {
  background-color: #347e5f;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  padding-left: 31px;
  max-height: 60px;
  max-width: 100%;
}
.logo img.gaming {
  max-height: 30px;
  vertical-align: middle;
  padding-left: 10px;
}
.nav-menu {
  display: flex;
  align-items: center;
  max-height: 100%;
  max-width: 100%;
}
.nav-menu img {
  height: 60px;
  width: 100%;
}
.nav-menu li {
  list-style: none;
  margin-left: 5px;
  margin-right: 50px;
}
.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}
#unity-container {
  position: absolute;
  border-radius: 50px;
}
#unity-container.unity-desktop {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}
#unity-canvas {
  background: #027f5d;
}
.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}
#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
#unity-logo {
  width: 154px;
  height: 130px;
  background: url("runner.gif") no-repeat center;
}
#unity-progress-bar-empty {
  width: 141px;
  height: 18px;
  margin-top: 10px;
  margin-left: 6.5px;
  background: url("progress-bar-empty-light.png") no-repeat center;
}
#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url("progress-bar-full-light.png") no-repeat center;
}
#unity-footer {
  position: relative;
}
.unity-mobile #unity-footer {
  display: none;
}
#unity-webgl-logo {
  float: left;
  width: 204px;
  height: 38px;
  /* background: url("webgl-logo.png") no-repeat center; */
}
#unity-build-title {
  float: right;
  margin-right: 10px;
  line-height: 38px;
  font-family: arial;
  font-size: 18px;
  color: black;
}
#unity-fullscreen-button {
  float: right;
  width: 38px;
  height: 38px;
  background: url("fullscreen-button.png") no-repeat center;
}
#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}
@media screen and (max-height: 800px) {
  .top-bar {
    display: none;
  }
}
/* Mobile Content */
.mobile-content {
  display: none;
}

html.mobile,
html.mobile body,
.mobile-content {
  height: 100%;
}

html.mobile body {
  background-image: none;
  background-size: cover;
  background-color: #027f5d;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.dreamscape-logo {
  margin: 10px 0;
  max-width: 100%;
  width: 220px;
}

html.mobile .webgl-content {
  display: none;
}

html.mobile .top-bar {
  background-color: #347e5f;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

html.mobile .logo {
  padding-left: 0px;
  margin-right: auto;
}

html.mobile .unity-loading-bar {
  display: none;
}

html.mobile .mobile-content {
  align-items: center;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.mobile-content__header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
}

.mobile-content__download a {
  display: block;
  margin-bottom: 30px;
}

.mobile-content__download a img {
  width: 200px;
}

.mobile-content h1 {
  margin: 0 0 30px;
}

.mobile-content h2 {
  margin: 40px 0;
}
