body {
  background-color: #00171e;
  color: #00171e;
  font-family: 'Noto Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* div {
  border: 1px solid red;
} */

a {
  color: #f1592a;
  text-decoration-color: #f1592a;
  text-underline-offset: .3em;
  text-decoration-style: double;
  text-decoration-thickness: .05em;
}

a:hover {
  background-color: #ffde16;
  color: #00171e;
  text-decoration-color: #00171e;
}

::selection {
  color: #00171e;
  background-color: #ffde16;
}

main {
  background-color: #fff;
}

.side {
  padding-top: 4rem;
}

.side p {
  font-size: .9rem;
  line-height: 1.5rem;
}

header {
  background-color: #20c3f9;
  background-image:
    linear-gradient(
      to right,
      #f1592a, #ffde16
    );
  color: #fff;
  padding: .25rem 2rem;
  text-align: center;
}

header a {
  color: #fff;
  font-weight: bold;
  margin-right: 2rem;
  text-decoration: none;
  text-transform: uppercase;
}

header a:hover {
  animation-name: nav;
  animation-duration: .5s;
  background-color: transparent;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: .3em;
  text-decoration-style: dotted;
  text-decoration-thickness: .2em;
}

.logo {
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3rem;
  font-weight: normal;
  text-transform: capitalize;
}

.home-header {
  font-family: 'Newsreader', sans-serif;
  font-size: 5rem;
  margin-top: 0;
  margin-bottom: .75rem;
  padding-top: 2.5rem;
}

a.logo:hover {
  animation-name: none;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}

article {
  font-size: 1.2rem;
  line-height: 1.95rem;
  padding: 0 0 3rem 0;
}

article img {
  display: block;
  max-width: 100%;
}

.date, .source {
  color: #aaa;
  font-size: 1rem;
}

.home-post {
  margin-bottom: 6.5rem;
}

.material-symbols-outlined {
  font-size: 1.1rem;
}

h1 {
  font-family: 'Noto Sans', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
}

h1.full-bleed, p.full-bleed {
  text-align: center;
}

h2 {
  font-weight: normal;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

div h2 a {
  font-weight: normal;
  line-height: 3rem;
}

blockquote {
  background-color: #f7f7f7;
  border-left: 5px solid #ffde16;
  color: #444;
  margin-bottom: .5rem;
  padding: 0;
}

blockquote::before {
  font-family:Arial;
  content: "\201C";
  color: #444;
  font-size:4em;
  position: absolute;
  margin: 2.5rem 0 0 .75rem;
}

blockquote::after {
  content: '';
}

blockquote p {
  padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.tags-list {
  list-style-type: none;
  text-align: center;
}

.tags-list li {
  display: inline-block;
}

.tags-list li a {
  background-color: #eee;
  border: 2px solid transparent;
  border-radius: 20px;
  color: #00171e;
  display: block;
  margin: .25rem;
  padding: 1rem;
  text-decoration: none;
}

.tags-list li a:hover {
  background-color: #fff;
  border: 2px solid #ddd;
  color: #00171e;
}

.tagged-posts {
  list-style-type: none;
}

.tagged-posts li {
  border: 2px solid transparent;
  margin-bottom: 1rem;
}

.tag {
  background-color: #ddd;
  border: 2px solid transparent;
  border-radius: 5px;
  color: #00171e;
  padding: .25rem;
  text-decoration: none;
}

.tag:hover {
  background-color: #fff;
  border: 2px solid #ddd;
  color: #00171e;
}

time, .tag {
  font-size: .85rem;
}

footer {
  background-color: #00171e;
  color: #fff;
  padding: 1rem 0 1rem 0;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration-color: #fff;
}

footer a:hover {
  background-color: transparent;
  color: #fff;
  text-decoration-color: #fff;
}

.wrapper, .wrapper-single {
  display: grid;
  grid-column-gap: .25rem;
  justify-content: center;
}

.wrapper {
  gap: 3rem;
  grid-template-columns: 37% 15%;
}

.wrapper-single {
  grid-template-columns: 40%;
}

/* .wrapper > * {
  grid-column: 2;
} */

.full-bleed {
  width: 100%;
  grid-column: 1 / -1;
}

table {
    border-collapse: collapse;
}

td {
  border: 1px solid #ddd;
  padding: .75rem;
}

table span {
  background-color: yellow;
}

.box {
  border: 2px dotted #f1592a;
  padding: 0 2rem 0 2rem;
}

/* YouTube iframe */

iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@keyframes nav {
  from {
    color: #def4fc;
    text-decoration-color: transparent;
  }
  to {
    color: #fff;
    text-decoration-color: #000;
  }
}

@media screen and (max-width: 1500px) {
  .wrapper {
    gap: 3rem;
    grid-template-columns: 55% 30%;
  }
  .wrapper-single {
    grid-template-columns: 40%;
  }
}

@media screen and (max-width: 900px) {
    header a {
      font-size: .85rem;
      margin-left: .5rem;
      margin-right: .5rem;
      text-align: center;
    }
    nav {
      text-align: center;
    }
    .logo {
      display: block;
      font-size: 2rem;
      margin: 0;
      text-align: center;
    }
    .full-bleed {
      grid-column: 2;
    }
    .wrapper, .wrapper-single {
      display: block;
    }
    article {
      padding: 1rem 1.75rem;
    }
    h1, h2 {
      font-size: 1.75rem;
    }
    h1.home-header {
      font-size: 3.5rem;
    }
    blockquote {
      margin: 1rem 0;
    }
    blockquote p {
      padding: 1rem 0 1rem 1rem;
    }
    blockquote::before {
      display: none;
    }
}
