body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

button {
  font-size: 48px;
  padding: 20px 60px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

button:hover {
  transform: scale(1.1);
}
