html {
  height: 100%;
  width: 100%;
  text-align: center;
}

#lives-container {
  position: fixed;
  top: 10px;
  right: 10px;

  display: flex;
  gap: 8px; 
}

.life {
  width: 30px; 
  height: auto;
}

#score {
  color: black;
}

#bins {
  display: flex;
  gap: 35px;
  position: fixed;
  bottom: 0;
}

.bin {
  width: 300px;
  height: 300px;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
  cursor: pointer;
}

.bin:hover {
  transform: scale(1.05);
}

.bin.drag-over {
  outline: 3px solid green;
}

body {
  background-color: black;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.end-game-message {
  font-size: 50px;
  font-family: 'Press Start 2P', cursive;
  color: red
}

.center-text {
  text-align: center;
  margin: 50px ;
  font-family: 'Press Start 2P', cursive;
  font-size: 35px;
  color: black
}

.item {
  width: 60px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

#score {
  position: fixed;
  top: 10px;
  left: 20px;
  font-size: 30px;
}

#timer {
  position: fixed;
  bottom: 10px;
  left: 30px;
  transform: translateX(-50%);
  font-size: 30px;
}

#red-x {
  position: fixed;
  top: 50%;
  left: 50%;
  right: 100;
  bottom: 100;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 9999;
  display: contents;
  object-position: center;
}

#background {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}