/* 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." */

@import url('https://fonts.googleapis.com/css?family=IM+Fell+English+SC');
@import url('https://fonts.googleapis.com/css?family=IM+Fell+English');

body {
  background-color: white;
  color: black;
  font-family: "IM Fell English", serif;
  font-size: 125%;
}

img {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

#subsiteslist {
  position: relative;
  padding: 25px 50px;
}

a:link {
  color: cyan;
  text-decoration: none;
  font-family: "IM Fell English SC", serif;
}

a:hover {
  background-color: cyan;
  color: black;
  text-decoration: underline;
  font-family: "IM Fell English SC", serif;
}

