/* 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 {
  background-color: MintCream;
  color: DarkSlateGray;
  font-family: Verdana
  }
  
.inst {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.line {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* <weight>: Use a value from 300 to 700
 <uniquifier>: Use a unique and descriptive class name */

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
}

.crimt {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.crimtsb {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
}

.crimtb {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

.crimti {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: italic;
}

.crimtsbi {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: italic;
}

.crimtbi {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: italic;
}
