html {
  scroll-behavior: smooth;
}

div, section, h1, h2, p, input, textarea {
	box-sizing: border-box;
}
body {
  background-color: #fff;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #161823;
}
h1, h2 {
  color: #161823;
  text-shadow: -0.04em 0.04em #30a8ed;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 12vw;
  margin: 0 auto 1em auto;
  text-align: center;
  letter-spacing: 0;
}
h2 {
  color: #161823;
  text-shadow: none;
  font-size: 8vw;
}
strong {
  font-weight: 400;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
a {
  color: #161823;
  text-decoration: none;
}
p {
  line-height: 1.5em;
}
section {
  margin: 5vw;
}
section + section {
  padding-top: 5vw;
  border-top: 1px solid #161823;
}
.smaller {
  font-size: 0.8em;
}
.blue {
  color: #30a8ed;
}
.center {
  text-align: center;
}
#intro h1 {
  margin: 0;
}
#bracket {
  max-width: 1600px;
  margin: 0 auto;
}
#bracket-links {
  text-align: center;
  margin: 5vw auto;
}
#bracket-links a {
  display: inline-block;
  margin: 0.5vw auto 3vw auto;
  color: #fff;
}
.episode {
  border-bottom: 1px solid #666;
  padding: 0.5vw 0 2.5vw 0;
  margin-bottom: 2vw;
}
.episode img {
  margin: 0 auto 1em auto;
}
.episode-details {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: 1em;
  margin-bottom: 1em;
}
.episode:last-child {
  padding: 0.5vw 0;
  border-bottom: none;
}
.episode-title {
  display: block;
}
.episode-title span {
  display: block;
  margin-top: 0.5em;
}
.button {
  margin: 0 auto 5vw auto;
  padding: 0.5em;
  border: 1px solid #666;
  border-radius: 0.5em;
  max-width: 400px;
  display: grid;
  grid-template-columns: 75px 1fr 40px;
  grid-gap: 1em;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease-out;
}
.button span[class*="icon"] {
  display: block;
  font-size: 2em;
  transform: translateY(0.15em);
}
.underline {
  text-decoration: underline;
}
audio {
  width: 100%;
}
footer {
  margin-top: 5vh;
}
.clock {
  font-family: 'Digital-7', sans-serif;
  font-size: 3em;
  margin-bottom: 0;
}
#poster { 
  max-width: 80vw;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: blink 1s linear infinite;
}
@media only screen and (min-width: 768px) {
  h1 {
    text-shadow: -0.02em 0.02em #30a8ed;
  }
  h2 {
    font-size: 4vw;
  }
  #bracket-links a {
    margin: 0.5vw auto;
  }
  .button {
    margin: 0 auto;
  }
  .episodes {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.75em;
    border: 1px solid #666;
  }
  .episode {
    padding: 1vw 0 1vw 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-gap: 1em;
  }
  .episode:first-of-type {
    padding-top: 0;
  }
  .episode:last-child {
    padding: 1vw 0 0 0;
  }
  .episode-title {
    display: grid;
    grid-template-columns: 1fr 30%;
  }
  .episode-title span {
    text-align: right;
    margin-top: 0;
  }
  .episode img {
    max-width: 180px;
    display: block;
    margin-bottom: 0;
  }
  .episode-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1em;
  }
  .episode span:first-child {
    text-align: left;
  }
  .episode-details {
    grid-template-columns: 1fr 30% 20%;
  }
  .networks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5vw;
  }
  #poster { 
	max-width: 40vw;
    margin: 0 auto;
  }
}
@media (hover:hover) {
  #bracket-links a:hover {
    color: #30a8ed;
  }
  .episode a:hover {
    color: #30a8ed;
  }
  .button:hover {
    border-color: #fff;
    color: #30a8ed;
    transition: all 0.3s ease-out;
  }
}
