html {
  padding: 10pt;
}

body {
  color: #222;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: normal;
  max-width: 962px;
  margin: auto;
  background-color: #fafafa;
}

h1 {
  font-family: "Maven Pro", sans-serif;
  font-size: 2em;
  color: #0b6374;
  font-weight: bold;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 1;
  margin-bottom: 0;
}

h2 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.5em;
  color: #599191;
  font-weight: bold;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
}

footer {
  margin-top: 1rem;
}

a {
  color: #00e;
  text-decoration: none;
}

blockquote {
  font-size: 1.5em;
  margin: 0;
  font-weight: lighter;
}

p {
  margin-top: 0;
}

img {
  border-radius: 2%;
}

.grid {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
  .grid {
    grid-template-columns: 100%;
  }
}