body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

#rotate-device-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9998;
  top: 0;
  left: 0;
}

.rotate-device-image {
}

#gameContainer {
  background-color: #ffffff;
  position: fixed;
  overflow: hidden;
  left: 50%;
  top: 50%;
}

canvas {
  position: absolute;
}

a:link {
  color: #d07500;
}

a:visited {
  color: #d07500;
}

a:hover {
  color: #ffffff;
}

a:active {
  color: #f0f0f0;
}

.button {
  margin: 15px;
  cursor: pointer;
  color: white;
}

.disabled {
  color: gray;
}

#CN_DEBUG_DIV {
  position: absolute;
  z-index: 9997;
  bottom: 0;
  background: #000;
}

@font-face {
  font-family: "Gumball Rounded Regular";
  src: url("../font/webfont/Gumball-Rounded.ttf") format("truetype");
}

@font-face {
  font-family: "Baloo Bhaina Regular";
  src: url("../font/webfont/BalooBhaina-Regular.ttf") format("truetype");
}

.floating {
  position: absolute;

  animation-name: floating;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}
