body {
  font-size: 20px;
  color: black;
  background-color: #AFE1AF;
  font-family: "Garamond", "Times New Roman", serif;
  margin: 0;
  padding: 20px;
}

/*--this is a simplified way to write this for an attribute that is the same for all headings--*/
h1, h2, h3 {
  color: black;
}

h1 {
  text-align: center;
  font-size: 26px;
  margin: 20px 0;
}

h2 {
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
}

h3 {
  text-align: center;
  font-size: 22px;
  margin-top: 30px;
  border: 2px;
  color: black;
}

.top-left-container {
  position: absolute;
  /*float right?*/
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #ECFFDC;
  padding: 10px;
  width: 150px;
  border: 1px solid #999;
}
