body {
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  background-color: green;
  border-radius: 10%;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 5rem 0;
}

.buttons button {
  background-color: green;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid green;
}

.buttons button:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.buttons button:focus {
  background-color: black;
  color: green;
  border-color: green;
}

.buttons button:disabled {
  background-color: yellow;
  color: black;
}

.status {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: green;
  color: white;
  border: 10px double rgb(100, 150, 100);
  font-size: 2.5rem;
  font-weight: bold;
}

.status h2 {
  font-size: 2rem;
}

.status p {
  font-size: 1rem;
  font-weight: bold;
}

