body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#status {
  font-size: 18px;
  font-weight: 600;
}

div#options {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(5px + 1vw);
}

div#options button {
  --size: calc(10vw + 50px);
  width: var(--size);
  height: var(--size);
  background-image: var(--imageURL);
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 20px);
  filter: invert(0.95);
  background-color: rgb(174, 52, 52);
  border: calc(3px + 0.2vw) dashed rgb(255, 107, 107);
  border-radius: calc(10px + 1vw);
  cursor: pointer;
  transition: transform 200ms;
}

div#options button:disabled {
  cursor: not-allowed;
  filter: invert(0.95) brightness(0.9);
}

div#options button:not(:disabled):hover {
  transform: scale(105%);
}
