* {
  font-family: sans-serif;
  color: black;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 40px;
}

/* Hide bullets for lists */
ul {
  list-style: none;
}

/* Spacing between list items */
li {
  font-size: 30px;
  margin-bottom: 10px;
}

li:last-child {
  margin-bottom: 0;
}

/* Link styles */
a:link {
  color: blue;
  text-decoration: none;
}

a:visited {
  color: purple;
}

a:hover {
  color: orangered;
  font-weight: bold;
  text-decoration: underline orangered;
}

a:active {
  background-color: black;
  font-style: italic;
}
