html, body {
  height: 100%;
  width: 100%;
}


body {
  background-color: #117777;
  color: #f7f4ea
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Comic Neue", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: 4em;
  font-weight: 700;
  text-transform: lowercase;
  color: #fff;
  -webkit-text-stroke: 2px #0b0119;
  text-shadow: 2px 2px 4px #000000;
}

h2 {
  font-size: 2em;
  font-weight: bold;
  text-transform: lowercase;
  text-align: center;
  color: #330077
}

h3 {
  font-size: 1.5em;
  text-transform: lowercase;
}

#wrapper {
  width: 90%;
  margin: 0 auto;
  flex: 1 0 auto;
}

header {
  background-color: #117777;
  text-align: center;
  margin-bottom: 1.5em;
  color: #f7f4ea;
}

main {
  background-color: #f7f4ea;
  stroke: 3px #f2cc64;
  padding: .5em 1em;
  border-radius: 15px;
  padding-bottom: 1em;
}

main p, main ul {
  font-size: 1.1em;
}

main ul li {
  margin-left: 0;
}

footer {
  background-color: #117777;
   font-size: 1em;
   color: #fff;
   flex-shrink: 0;
   padding: 1em;
   padding-bottom: 1.5em;
   margin-top: 1em; 
   text-align: center;
}

.youtube {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.quote {
  background-color: #fa7b62;
  border-radius: 20px;
  padding: 1.75em;
  margin: 1em 0;
}

.quote h3 {
  color: #f7f4ea;
  font-size: 1.5em;
  margin: 0;
}

.quote a, .quote a:visited, .quote a:hover, .quote a:active {
  background-color: #fa7b62;
}

.quote a:hover {
  text-decoration: underline;
}


a, a:active, a:visited {
  background-color: #f2cc64;
  text-decoration: none;
}

a:hover {
  background-color: #fa7b62;
}

/* Media query for viewport width 
   greater than 800px */
@media (min-width: 600px) { 
  #wrapper {
    width: 80%;
  }
}

