body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 0;
}

h2 {
  text-align: center;
  margin-bottom: 10px;
}

p {
  margin-bottom: 5px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 20px;
}

footer img {
  width: 100%; /* Adjust width as needed */
}

/* Responsive Design (Adjust as needed) */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.2em;
  }
  footer img {
    max-width: 300px; /* Adjust for smaller screens */
  }
}