body {
  background-color: #e9cfac;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}

header {
  text-align: center;
  background-color: black;
  padding: 20px;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

p {
  color: black;
}

a.download-button {
  display: inline-block;
  background-color: #ea5618;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 2rem;
}
a.button {
  background-color: black;
  display:flex;
}

a.download-button:hover {
  background-color: #FFA500; /* slightly darker shade of orange on hover */
}

a.download-button:active {
  transform: translateY(2px); /* move button down slightly on click */
}

img {
  width: 7rem;
}

footer {
  text-align: center;
  background-color: black;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer > p {
  color: white;
}

/* interactive feature: rotate the download button on hover */
a.download-button:hover {
  transform: rotate(10deg);
}

/* animated feature: fade in the header and download button */
header, a.download-button {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
