/* Base resets */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body defaults */
body {
  background-color: #000;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
}

/* Reel label styling */
.reel-label {
  text-align: center;
  margin-top: 8px;
  color: #a5a5a5;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 300;
}
.reel-label a {
  color: inherit;
  text-decoration: none;
}

/* Thumbnail grid styling */
table.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-collapse: collapse;
}
table.container td {
  width: 50%;
  text-align: center;
  vertical-align: bottom;
  padding: 0;
}
table.container img {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 50px;
}
@media (max-width: 600px) {
  .reel-label {
    font-size: 0.9rem;
  }
  table.container td {
    display: block;
    width: 100%;
  }
}

/* Responsive embed container for iframes */
.embed-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;
  width: 100%;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}