/* 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." */
   
.center-image {
  display: block;
  margin-left: 1px;
  margin-right: -1px;
  /* Optional: set a width smaller than the container */
  width: 50%;
}

body {
    background-color: #d2e1ed;
}
h1 {
  text-align: center;
}
h3 {
  font-family: "Crimson Text";
  text-align: center;
  font-size: 20px;
  overflow: hidden; 
}
hs {
  text-align: center;
}
h2 {
  text-align: center;
  font-family:"Brush Script MT", cursive;
  font-weight: 400;
  font-style: normal;
  
  font-size: 25px;
  background-color: #eee3d2;
  color: #000000;
}

h1 {
   text-align: center;
}
  /* Specific styles for h2 with the class "another-style" */
.another-style {
  display: inline-block;
  padding: 1px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: -1px;
  
  font-size: 20px;
  background-color: #eee3d2;
  color: #000000;
}

h4 {
   text-align: left;
   font-family: "Crimson Text";
  font-size: 15px;
  font-weight: 400;
}

p {
  text-indent: 40px;
}

 ul.navigation {
  list-style-type: none;
  text-align: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  
  position: sticky;
  top: 0px; }
  
ul.navigation a:hover {
  background: #eee3d2;
  color: #000000;
}

ul.navigation a:link {
  text-decoration: none;
}

ul.navigation a:hover img{
  filter: invert(1);
}

#active {
  background: #d2e1ed;
  color: #000000;
}