body {
  font-family: Arial, sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  text-align: center;
}

h2 {
  margin-top: 20px;
}

button {
  margin-top: 10px;
}

.eliminated {
  text-decoration: line-through;
  color: red;
}

#playersContainer {
  margin-bottom: 20px;
}

#locationsList {
  list-style-type: none;
  padding: 0;
}

#locationsList li {
  margin-bottom: 5px;
}

#winner {
  font-weight: bold;
  margin-top: 20px;
  color: green;
}
