body {
    margin: 0;
    padding: 0;
    background-color: #393939;
    color: #e9e9e9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
h1 {
    font-size: 2em;
    margin-bottom: 1.5em;
}
.choices {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
}
.choice-button {
    background-color: #c7da4b;
    color: rgb(74, 63, 63);
    padding: 1em 2em;
    border: none;
    border-radius: 12px;
    font-size: 1.4em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.choice-button:hover {
    background-color: #52796f;
}

.choice-button {
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 1rem 2rem;
  min-width: 150px;
  text-align: center;
  border-radius: 12px;
}

.choice-button.winner {
  font-size: 4.5rem;
  padding: 5rem 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  z-index: 2;
}

.choice-button.loser {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.vote-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 60vh;
  flex-wrap: wrap;
}
