/*
 * This file has the site-wide styles.
 */
@media screen {
  /*
   * Base style.
   */
  body {
    background-color: white;
    font-family: sans-serif;
  }
  a {
    text-decoration: underline;
    font-color: blue;
  }
  a:active {
    font-color: red;
  }
  a:visited {
    font-color: purple;
  }
  /*
   * Classes
   */
  body.center {
    text-align: center;
  }

  div#local_resources {
    padding: 10px;
  }

  div#other_resources {
    padding: 10px;
  }
}
