/* COLORS
 *Navy blue = #00366
 *Bone = #e3dac9 */


/* TEXT FORMATTING */
header{
  background-color: #e3dac9;
  font-family: caladea, serif; 
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

body {
  background-color: #e3dac9;
  font-family: caladea, serif;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

h1 { 
  margin-left: auto;
  margin-right: auto;
  width: max-content; /* keeps text centered visually */
   }
h2 { text-align: center; }
pre {
  background-color: #e3dac9;
  font-family: caladea, serif;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* FONTS */
.caladea-regular {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: normal;
}

.caladea-bold {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: normal;
}

.caladea-regular-italic {
  font-family: "Caladea", serif;
  font-weight: 400;
  font-style: italic;
}

.caladea-bold-italic {
  font-family: "Caladea", serif;
  font-weight: 700;
  font-style: italic;
}

/* TOPNAV STYLE*/
ul.topnav {
  display: flex;
  color: white;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #003366;
  text-align: center
}

/*TOPNAV LINKS*/
ul.topnav li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

