html,
body {
  background-color: rgb(0, 0, 0);
  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: 0;
  left: -9999px;
  color: white;
}

#signup {
  display: none;
  background-color: white;
  padding-top: 10px;
  max-width: 512px;
  height: 250px;
  margin: auto;
  position: absolute;
  border-radius: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-top: 30px;
}

.firstname {
  /* background-color: #eaeaea; */
  border: none;
}

.lastname {
  /* background-color: #eaeaea; */
  padding-left: 120px;
  border: none;
}

.email {
}

.provider {
  /* background-color: #eaeaea; */
  padding-left: 120px;
  border: none;
}

#flex-container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding-left: 50px;
  padding-top: 30px;
}

#header {
  text-align: center;
  font-family: "khulabold";
  font-size: 20px;
}

#submit {
  margin: 0 auto;
  padding-top: 30px;
  width: 20%;
  display: block;
}

.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);
  }
}

button {
  border: none;
  background-color: #ffb600;
  border-radius: 5px;
  width: 100px;
  height: 30px;
}

input[type="text"],
textarea {
  border: none;
  background-color: #eaeaea;
  height: 25px;
  color: #9b9ea0;
}

select {
  border: none;
  background-color: #eaeaea;
  height: 25px;
  color: #9b9ea0;
}

#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;
}
