/* 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: black;
  color: white;
  font-family:'Cormorant Garamond', serif;
  width: 100%; 
	max-width: 800px; /* or whatever width you want */ 
	margin-right: auto; 
	margin-left: auto; 	}
html{
  font-size: 22px; /* Set the root font size */
}

h1 {
  font-size: 2.5rem; /* 2.5 * 16 = 40px */
}

h2 {
  font-size: 1.875rem; /* 1.875 * 16 = 30px */
}

p {
  font-size: 1rem; /* 1 * 16 = 16px */

}
 /* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: yellow;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: blue;
} 

/*'Cormorant Garamond', serif;

