html {
  font-size: 1.5em;
}

body {
  background: #8e0000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
}

.title {
  margin: 1rem auto 1rem auto;
  font-family: 'Monoton', cursive;
  color: #fff;
  font-size: 4rem;
  padding-left: 0;
  line-height: 1;
}

main {
  background-color: #fff;
  width: 80%;
  margin: 0 auto 2rem auto;
  overflow-x: auto;
  border-radius: 0.3rem;
  box-shadow: 0 1.2rem 3rem 0 rgba(0, 0, 0, 0.19),
    0 0.8rem 2rem 0 rgba(0, 0, 0, 0.24);
  transition: opacity 0.5s ease-in-out;
}

.video-container-container {
  margin: auto;
  width: 60%;
  box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.06),
    0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.video-container {
  position: relative;
  padding-bottom: 53.7%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  border-radius: 0.3rem;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a {
  font-weight: 700;
  color: black;
  text-decoration: none;
  transition: color 0.18s ease-in-out;
}

a:hover {
  color: #666;
  transition: color 0.18s ease-in-out;
}

main {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

main p {
  text-align: justify;
  padding: 0.5rem;
  line-height: 1.5;
}

.play-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.play-links a {
  margin: 1rem 0.5rem 0 0.5rem;
  padding: 0;
}

.badge img {
  height: 2.5rem;
  width: auto;
}

.badge {
  padding: 0;
  background-color: transparent;
  line-height: 0;
  border-radius: 0.6rem;
  transition: opacity 0.5s ease-in-out, box-shadow 0.18s ease-out,
    font-weight 0.18s ease-out, color 0.18s ease-out,
    background-color 0.18s ease-out, font-size 0.18s ease-out;
}

.badge:hover {
  transition: box-shadow 0.18s ease-out, font-weight 0.18s ease-out,
    color 0.18s ease-out, background-color 0.18s ease-out,
    font-size 0.18s ease-out;
}

.badge:hover {
  box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.06),
    0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
}

#play-link {
  position: relative;
  appearance: none;
  overflow: hidden;
  margin: 1rem auto 0 auto;
  opacity: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-family: 'Marmelad', sans-serif;
  font-weight: 40;
  box-shadow: none;
  font-size: 2rem;
  background-color: #000;
  z-index: 1;
  transition: box-shadow 0.18s ease-in-out, opacity 0.5s ease-in-out,
    font-size 0.18s ease-in-out;
  border-radius: 0.3rem;
  width: 10rem;
  height: 4rem;
  line-height: 1;
}

#play-link:hover {
  box-shadow: 0 0.3rem 0.3rem 0 rgba(0, 0, 0, 0.06),
    0 0.6rem 1.5rem 0 rgba(0, 0, 0, 0.2);
  font-size: 2.5rem;
}

#play-link a {
  font-size: inherit;
  position: relative;
  color: inherit;
}

#play-link::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #830000, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

#play-link:hover::before {
  --size: 30rem;
}

#content {
  background-color: #f0f0f0;
  grid-row-start: 2;
  grid-column-start: 1;
  grid-column-end: span 4;
  padding: 1rem;
  transition: opacity 0.5s ease-in-out;
  overflow: auto;
}

.large,
.small {
  font-family: 'Roboto Contensed', sans-serif;
  font-weight: 300;
}

.large i,
.small i {
  font-style: italic;
}

.large {
  font-size: 1.3rem;
}

.small {
  font-size: 1rem;
}

.small a {
  font-weight: 400;
}

@media (orientation: portrait) {
  .video-container-container {
    width: 90%;
  }

  main {
    width: 90%;
  }
}
