body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #ece9e6, #ffffff);
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  direction: rtl;
}

.center {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

h1 {
  color: #5c4033;
  margin-bottom: 30px;
}

button {
  background-color: #5c4033;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #3e2c23;
}
