body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: flex-start;
  /* height: 100vh; */
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  /* max-width: 500px; */
}

main {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  padding: 20px;
  width: 700px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

ul {
  list-style-type: " ⊹ ";
  font-size: 12pt;
}

a {
  color: rgb(109, 0, 0);
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

a:hover {
  text-decoration: none;
  text-shadow: 0 0 5px rgb(0, 213, 255);
}

img {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.expand {
  max-height: 16rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expand.is-expanded {
  max-height: 200rem;
}

.expand-toggle {
  margin-top: 8px;
  margin-bottom: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgb(109, 0, 0);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.expand-toggle:hover {
  text-shadow: 0 0 5px rgb(0, 213, 255);
}
