/* CSS Styling */
body {
  font-family: Arial, sans-serif;
  background: #00203F;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 50px;
}

h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

button {
  background: #07553B;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #555;
}

p {
  margin-top: 20px;
  font-size: 18px;
  color: #ADEFD1;
}