body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1E1E2E;
}

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

.counter {
  font-weight: bold;
  margin-right: 10px;
  color: #C9B8A9;
  font-size: 24px;
}

.large-button {
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  background-color: #1E1E2E;
  color: #C9B8A9;
  border-radius: 10px;
}

.large-button:hover {
  background-color: #2A2A35;
}