/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&family=Special+Elite&display=swap');

/* 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: #000;
  color: #fff;
  font-family: 'Special Elite', monospace;
  line-height: 1.6;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredericka the Great', cursive;
}

a {
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:visited {
  color: #fff;
}

a:hover {
  color: #f5e8c9;
  text-shadow: 0 0 15px #f5e8c9;
}

ul a {
  font-family: 'Fredericka the Great', cursive;
}