/* 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." */
   
   /* Color palette hex codes: Dry sage bobb9b , dark spruce 364d37 , dusty olive 656f51 , honey bronze dfa03f , camel ba9474 , pearl beige foe1bb , night bordeax 511012 , charcoal blue 3e5461 */

body {
  background-color: #ba9474;
  color: #1c1d1e;
  font-family: Georgia;
}

a:link {
  color: #364d37;
}

a:hover {
  color: #3e5461;
}

a:visited {
  color: #656f51
}

a:active {
  color: #3e5461;
}

h1 {                  
font-family: 'Canarina';
src: url(https://humantooth.neocities.org/fonts/Canarina.woff2) format('woff2');
color: #364d37;
font-size: 52px; 
} 
  
.container {
  border: 3px #511012;
}