body {
  margin: 0;
  overflow: hidden;
}

canvas {
  z-index: 0;
  position: fixed !important;
  top: 0;
}

#container {
  display: none;
  position: fixed;
  top: 0;
  z-index: 1;
  padding: 10px 0px 0px 50px;
}

h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 50px;
  font-weight: 600;
  background: linear-gradient(to left, #f9e26d, #51d84f);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

#loading-screen {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, #553c9a, #b393d3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loading-bar {
  width: 300px;
  height: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

#loading-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(to left, #f9e26d, #51d84f);
}

.loading-img {
  width: 250px;
  height: 250px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: #553c9a 0px 10px 20px;
}

#play-game-text {
  display: none;
  cursor: pointer;
}

#play-again {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, #553c9a, #b393d3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}