button {
  padding: 10px 20px;
  background-color: #4CAF50; /* Green */
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 1vw; /* Space above the button */
  border-radius: 10px; /* Rounded corners */
}

#menu {
  /* Same styles as #game-over */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#menu.inactive {
    display: none;
}

.finalScore {
    font-size: 5vw;
    animation: scoreAnimation 2s linear infinite;
}


@keyframes scoreAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.icon {
    width: 4vw;
    height: 4vw;
}

#settingsIcon {
    position: absolute;
    top: 15px;
    left: 15px;
}

#storeIcon {
    position: absolute;
    top: 15px;
    right: 15px;
}