html {
  font-family: "Noto Sans", sans-serif;
  color: #222;
  background: #fffef2;
}

.hero {
  background-image: url("main.png");
  height: 300px;
  background-repeat: no-repeat;
  max-width: 1150px;
  margin: auto;
  object-fit: contain;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  background-size: cover;
  width: 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.body {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}
.body p {
  padding: 0.5rem 0;
}
.body a {
  color: blue;
}
.body .quote {
  font-size: 1.25rem;
  text-shadow: 2px 2px yellow;
}

h1,
h2 {
  display: block;
}
h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 10rem;
  line-height: 7rem;
  letter-spacing: 5px;
  text-align: center;
}

.table {
  display: flex;
  border: 3px dashed black;
  padding: 0.5rem 0;
}
.table .cell {
  width: 33%;
  padding: 1.5rem 2rem;
  text-align: center;
}
.table .cell h2 {
  text-shadow: 2px 2px yellow;
  font-size: 2rem;
  margin: 1rem 0 0;
}
.table .cell p {
  margin: 0;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .table {
    flex-flow: column;
  }
  .table .cell {
    width: 88%;
  }
}

.sources {
  font-size: 12px;
}
.text-quote {
  font-style: italic;
}
.footer-text {
  font-size: 12px;
}