body {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  background-color: #FFFFFF;
  font-family: sans-serif;
  margin: auto;
  font-size: 12pt;
  color: black;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}
h1, h2, h3, h4 {
  color: #F36F6B;
  font-weight: 900;
  font-size: 20pt;
}
.header{
  display: flex;
  flex-direction: row;
}
.header .info {
  flex: 1;
}
.header picture {
  flex: 1;
}
.header picture, .header picture img {
  max-width: 100%;
}
@media (max-width:700px) {
  .header{
    flex-direction: column;
  }
  .header picture, .header picture img {
    max-height: 350px;
    align-self: center;
  }  
  body {
    width: 90%;
  }
}
@media (min-width:701px){
  body {
    width: 700px;
  }    
  .header picture, .header picture img {
    max-width: 350px;
  }
}
@media (min-width:1101px){
  body {
    width: 1100px;
  }
  .header picture, .header picture img {
    max-width: 500px;
  }
}

.content  {
  flex-grow: 1;
}
a:not(.button), a:not(.button):visited, a:not(.button):active {
  color: #F36F6B;
  font-weight: bold;
  text-decoration: underline;
}
a:not(.button):hover {
  color: #4FB68A;
}

.toc {
 white-space:pre-wrap;
}

.footer {
  font-size: 8pt;
}
.actions {
  margin-top: 20pt;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
}

a.button, a.button:visited, a.button:active {
  font-size: 20px;
  font-weight: bold;
  border-radius: 13px;
  padding-left: 15px;
  padding-right: 15px;
  height: 30px;
  color: black;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  margin: 10px 10px 10px 10px;
}
a.button, a.button:visited, a.button:active {
  border: 2px solid #4FB68A;
  background-color: #4FB68A;
}
a.button.primary {
  border-color: #F36F6B;
  background-color: #F36F6B;
}
a.button:hover, a.button.primary:hover {
  color: #FFFFFF;
}


