body {
  margin: 0;
  padding: 0;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(135deg, #ff9933, #ffffff, #138808);

  font-family: Arial, sans-serif;
}

.container {
  text-align: center;

  background: white;

  padding: 40px;

  border-radius: 20px;

  box-shadow: 0 0 20px rgba(0,0,0,0.2);

  max-width: 500px;
}

h1 {
  color: #333;

  margin-bottom: 20px;
}

p {
  color: #555;

  margin-bottom: 30px;

  line-height: 1.6;
}

button {
  background: #ff6600;

  color: white;

  border: none;

  padding: 15px 30px;

  font-size: 18px;

  border-radius: 10px;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  background: #e65c00;

  transform: scale(1.05);
}
