body {
  margin: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #74b9ff, #a29bfe);
}

.box {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

button {
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  background: #6c5ce7;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  margin: 5px;
}