/* ...existing code... */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
}
nav {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  text-align: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1.2em;
  transition: 0.3s;
}
nav a:hover {
  color: #ffdd57;
}
.container {
  text-align: center;
  padding: 50px 20px;
}
h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
p {
  font-size: 1.2em;
}
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  color: #2575fc;
  background: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}
.button:hover {
  background: #f1f1f1;
  transform: scale(1.05);
}
