body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #7cddfb;
  /* General background color */
}

.background-half {
  position: absolute;
  width: 100%;
  height: 50%;
  /* Each half takes up 50% of the container's height */
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 80%;
}

#top-half {
  top: 0;
}

#bottom-half {
  bottom: 0;
}

#logo-container {
  position: absolute;
  top: 50%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
}

#logo-container img {
  width: 580px;
  height: auto;
}

#play-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("media/graphics/sprites/ui/button.png");
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 40px;
  font-weight: 900;
  width: 300px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#play-button:hover {
  transform: translateX(-50%) scale(1.1);
  transition: transform 0.2s;
}

#background {
  display: none;
}

#character {
  position: fixed;
  top:0;
  display: none;
}

#status {
  position: fixed;
  top:0;
  display: none;
}