@font-face {
  font-family: "PT Sans";
  src: local("PTSans"), url("/assets/fonts/PTSans-Regular.ttf") format("ttf");
}

:root {
  font-family: "PT Sans", sans-serif;
}

.main-container {
  display: flex;
}

.video-container {
  display: flex;
  margin: 0 auto;
}

.video-title {
  margin-top: 20px;
  color: #888888;
}

.channels {
  display: block;
  padding: 10px;
  max-height: 675px;
  overflow-y: scroll;
}

.channels ol {
  list-style: none;
  padding: 0;
}

.channel button {
  border: none;
  background: none;
  text-decoration: underline;
  font-size: 16px;
  margin-bottom: 12px;
  cursor: pointer;
}

#playdiv {
  width: 1200px;
  height: 675px;
  background: black;
}

#currently-playing {
  color: #00026d;
  margin-left: 20px;
}

@media (max-width: 1400px) {
  .video-container {
    width: 100%;
  }
  #playdiv {
    width: auto;
    height: auto;
    background: none;
    flex-grow: 1;
  }
}

@media (max-width: 750px) {
  .video-container {
    width: 100%;

    flex-direction: column;
    flex-flow: column-reverse;
  }
  #playdiv {
    width: auto;
    height: auto;
  }

  .channels {
    max-height: 300px;
  }
}
