html {
  background: #2C758F;
  color: #3A3A3A;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* above is from https://www.taniarascia.com/you-dont-need-a-framework/ */

html, body {
  overflow: auto;
  line-height: 1.3rem;
}

#container {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
  justify-content: center;
}

#body {
  border-radius: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 85%;
  height: 100%;
  background: #ECF1F4;
}

a {
  color: #18617B;
}

a:visited {
  color: #2C758F;
}

a:hover {
  color: #18617B;
}

body h1 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

body h1 a {
  text-decoration: none;
  color: #18617B;
}

.content {
  background: #FFFFFF;
  border-radius: .3rem;
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
}

.content p {
  margin-bottom: 1rem;
}

.content p:last-child {
  margin-bottom: 0px;
}
