section { 
  background-color: white;
  border-radius: 8px;
}

.bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}


.bg h1 {
  font-size: 3rem;
  max-width: 75%;
}

article, 
.body,
.header {
  width: 100%;
  flex-flow: column nowrap;
  align-items: baseline;
}

.title { padding-bottom: 2rem; }

.title p { padding: 0; }

.header {
  margin: 1rem auto;
  color: #212121;
  font-size: 1.2rem;
}

.body p,
.body ul,
.body ul li {
  color: #212121;
  font-size: 1.1rem;
  line-height: 26px;
}

.body h2,
.body h3 {
  font-family: 'Permanent Marker';
  text-align: left;
  color: #009e95;
  margin: 1rem 0;
}

.body figure {
  width: 100%;
  margin: 2rem auto;
}

.body figure figcaption { font-size: 1rem; text-align: center; margin: 1rem auto; display: block; }

.body figure img { width: 100%; }

.body table {
  width: max-content;
  border-collapse: collapse;
  margin: 2rem auto;
}

.body table caption {
  margin-bottom: 1rem;
}

.body table,
.body table td,
.body table th { border: 1px solid #212121; }

.body table td,
.body table th { padding: .5rem; }

.news-img {
  min-height: 350px;
  box-shadow: 6px 4px 12px 0px #0000007d;
  margin: 2rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.news-img img {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width:800px) {
    .news-img {
      min-height: 50vw;
    }
}