/* 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: 'Comic';
  src: url('Fonts/comic-webfont.eot'); /* IE9 Compat Modes */
  src: url('Fonts/comic-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('Fonts/comic-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('Fonts/comic-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('Fonts/comic-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('Fonts/comic-webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

body {
  background-image: url('paper bg 2.png');
  background-color: white;
  color: #361910;
  font-family: Comic;
}