/* 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: "Annai MN"; /* set name */
  src: url(AnnaiMN.woff); /* url of the font */
}
font-face {
  font-family: "The Serif Hand"; /* set name */
  src: url(theserifhandregular.woff); /* url of the font */
}



p {
  background-color: white;
  color: black;
  font-family: "Annai MN";
}
h1 {
  background-color: white;
  color: black;
   font-family: "The Serif Hand";
   font-size-adjust: 0.8;
}
h4 {
  background-color: white;
  color: black;
  font-family: "Annai MN";
}


  