html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Verdana, sans-serif;
  background-color: #f0d0ff;
  color: #222;
  padding: 2rem;
}

.center-text {
  text-align: center;
}

h1 {
  text-align: center;
  color: #800080;
}

/* Links */
.links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.links a {
  color: #4b0082;
  text-decoration: none;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

/* Image styling */
img {
  max-width: 100%;
  display: block;
  margin: 2rem auto 0;
  border: 3px solid #800080;
  border-radius: 8px;
}

/* Footer styling */
footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #800080;
  font-weight: bold;
}