/* 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." */
@font-face {
  font-family: 'Fanwood';
  src: url('fonts/Fanwood.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Fanwood';
  src: url('fonts/Fanwood Text.otf') format('otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Fanwood';
  src: url('fonts/Fanwood Italic.otf') format('otf');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Fanwood';
  src: url('fonts/Fanwood Italic Text.otf') format('otf');
  font-weight: bold;
  font-style: italic;
}

a {
  color: #5E2BFF; /* default link color */
}

a:visited {
  color: #242038; /* clicked/visited link color (purple) */
}

a:hover {
  color: #242038; /* color when mouse hovers over link */
}

a:active {
  color: #242038; /* color when link is being clicked */
}


/* popout color: 5E2BFF */
body {
  background-color: #FFE3E7;
  color: #242038;
  font-family: 'Fanwood';
}