html,
body {
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

canvas {
  width: 100%;
  height: 100%;
}

#gameContainer {
  position: relative;
  width: 100%;
  height: 100%;
}

#font-preloader {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@font-face {
  font-family: "disneyJunior";
  src: url("./assets/fonts/disneyjunior-bold-webfont.woff") format("woff");
  font-weight: normal;
}

.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, 10px);
  }

  to {
    transform: translate(0, -0px);
  }
}
