/* General body styling */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #667eea, #764ba2); /* Purple-blue gradient */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* H1 styling */
h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: black;
}

/* Button styling */
button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #3B2042; /* Purple background */
  color: white; /* White text */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #ffffff; /* White background on hover */
  color: black; /* Black text on hover */
  transform: scale(1.05);
}
