body {
  margin: 0;
  background-color: rgb(0, 0, 0);
}

#start-btn {
  background-color: rgb(214, 168, 0);
  color: rgb(0, 0, 0);
  padding: 20px;
  font-size: 30px;
  margin-top: 60px;
  border-radius: 20px;
  font-family: Amatica SC;
}

#restart-btn {
  background-color: rgb(214, 168, 0);
  color: rgb(0, 0, 0);
  padding: 20px;
  font-size: 30px;
  margin-top: 60px;
  border-radius: 20px;
  font-family: Amatica SC;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px;
}

#start-screen {
  background: linear-gradient(45deg, #1a1a1a, #2d1b00);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(214, 168, 0, 0.7);
  border: 3px solid #d6a800;
  max-width: 500px;
  margin: 50px auto;
}

#StartImages {
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.ImageLeft {
  position: fixed;
  left: 10px;
  bottom: 10px;
  width: 400px;
  height: auto;
}

.ImageRight {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 300px;
  height: auto;
}

#game-box {
  background-color: rgb(0, 0, 0);
  width: 600px;
  height: 400px;

  position: relative; /* allows us to position inner elements (absolute) related the the game-box */
  overflow: hidden; /* prevents elements to visually exit the game-box */
  user-select: none; /* prevents elements inside the game-box to be highlighted */

  background-image: url("../images/Fondo\ Casacadas.gif");
  background-size: cover;
  background-position: center;
}

#floor {
  pointer-events: none;
}

#game-box * {
  pointer-events: none; /* prevents elements in the game-box to be dragged */
}

#game-screen {
  display: none;
}

#game-over-screen {
  display: none;
  background: linear-gradient(45deg, #1a1a1a, #2d1b00);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(214, 168, 0, 0.7);
  border: 3px solid #d6a800;
  max-width: 500px;
  margin: 50px auto;
}

#restart-btn {
  background-color: rgb(214, 168, 0);
  color: rgb(0, 0, 0);
  padding: 20px;
  font-size: 30px;
  margin-top: 60px;
  border-radius: 20px;
  font-family: Amatica SC;
}

#game-ui {
  background: linear-gradient(45deg, #1a1a1a, #2d1b00);
  border: 2px solid #d6a800;
  box-shadow: 0 0 10px rgba(214, 168, 0, 0.5);
}
