/* Ensure the entire container takes up the full viewport */
html,
body,
.container {
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Background color for the body */
body {
  background-color: #5e2803; /* Darker shade of orange */
}

/* Style for the Phaser canvas */
canvas {
  border: 4px solid orange; /* Solid orange border */
  box-shadow: 0 0 15px orange, 0 0 30px orange, 0 0 45px orange; /* Glowing effect */
  border-radius: 10px; /* Rounded corners */
}

/* Center the play button container */
.play-container {
  position: absolute;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style for the play button */
#play {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px; /* Rounded corners, increase value for more roundness */
    color: white;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-shadow: 0 0 5px white, 0 0 10px white;
  }
  
  #play:hover {
    background-color: white; /* Add a hover effect */
    color: black;
    text-shadow: none;
  }
  