/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #f6edee;
  color: #998CA2;
  font-family: Verdana;
}

a {
color: black;
background-image: linear-gradient(to bottom, transparent 65%, #f55536 0);
background-size: 0% 100%;
background-repeat: no-repeat;
text-decoration: none;
transition: background-size .4s ease;
}

a:hover {
background-size: 100% 100%;
cursor: pointer;
}

.faves {
  text-align: center; /* Centers the list block within the page/parent */
}

ul {
  display: inline-block; /* Allows the list to be centered as a block */
  text-align: left;     /* Ensures text and bullets inside the list are left-aligned */
}