html {
  cursor: url(./images/lucy.png) 20 20, auto;
  display: flex;
  justify-content: center;
  height: 100%;
}
body {
  background-color: #111111;
  color: #b0bdefc7;
  font-family: "Lucida Console", Monaco, monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(90%, 800px);
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 20px;
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

h4 {
  margin: 0;
  text-align: center;
}

a:hover {
  color: #cbf4ff;
  cursor: url(./images/lucy_hover.png) 20 20, auto;
}

a::before, a::after {
  content: " ✮⋆˙ ";
  color: transparent;
  transition: all 0.6s ease;
}

a:hover::before, a:hover::after {
  color: #cbf4ff;
}
