/* 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 {
    font-size: 16px;
    background-color: rgb(41, 41, 41);
   /*  background-image: url(Images/seamless_antique_paper.jpg); */
   /*  background-repeat: repeat; */
    color: rgb(191, 191, 191);
    font-family: Verdana;
  }

  #navbar {
    position: absolute;
    left: 0;
    width: 200px;
  }

  #content {
    padding: 10px;
    border-left: 200px solid rgb(38, 34, 55);
  }

  h1 {
    color: rgb(141, 101, 176);
    font-size: 2em;
    font-variant: small-caps;
    margin-top: 0;
  }

  a:link {
    color:rgb(84, 88, 218);
  }

  a:hover {
    color:rgb(84, 88, 218);
    text-decoration: none;
  }

  a:visited {
    color:rgb(178, 84, 218);
  }

  .silly {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 24px;
    color: rgb(183, 121, 238);
  }