body {
  margin: 0;
  /* background-color: #3b3a62; */
  background-color: black;
  height: 100%;
}

.container {
  width: 100vw;
  height: 56.25vw;
  background: black;
  max-height: 100vh;
  max-width: 177.78vh;
  /* max-height: 579px;
  max-width: 1031px; */
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.game {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.gamepad-bg {
  background: #281f3d;
  width: 100%;
  height: 15%;
  position: absolute;
  left: 0;
  bottom: -15%;
  transition: bottom 0.2s ease-out;
  transition-delay: 0.75s;
}

.loading-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gamepad {
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: 11;
  transition: bottom 0.5s ease-in-out;
  transition-delay: 0.1s;
  -webkit-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.2);
}

.rotate-screen {
  position: absolute;
  background: rgba(0, 0, 0, 1);
  max-height: 100%;
  width: 100%;
  text-align: center;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
