body {
  background-image: linear-gradient(to bottom, blue, purple);
  font-family: Arial, sans-serif;
  margin: auto;
  width: 80%;
}
h1 {
  color: #FFFFFF;
  font-family: Georgia, serif;
}
h2 {
  color: #FFFFFF;
}
p {
  color: #FFFFFF;
}
ol {
  color: #FFFFFF;
}

/* unvisited link */
a:link {
  color: #FF008C;
}

/* visited link */
a:visited {
  color: #BD1471;
}

/* mouse over link */
a:hover {
  color: #73FDFF;
}

/* selected link */
a:active {
  color: blue;
}

.highlight {
  background-color: #9437FF;
  padding: 5px;
  border-radius: 15px;
  font-style: italic;
}
.funny {
  font-size: 24px;
  font-family: "permanent marker", sans-serif;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery img {
  width: 220px;
  border-radius: 8px;
}

footer {
  margin-top: 40px;
  padding-top: 12px;
  border-top: 2px solid #FFFFFF;
  font-size: 0.9em;
  color: #FFFFFF;

}
