body {
  display: flex;
  flex-direction: column; }

.speaker-avatar {
  height: 7rem;
  width: 7rem;
  object-fit: cover;
  border-radius: 50%; }

.view-box {
  padding: 1rem;
  border-radius: var(--bs-border-radius);
  background-color: #000A; }
  .view-box h5 {
    color: var(--my-color-1); }

.iframe-box iframe, .iframe-box img {
  border-radius: var(--bs-border-radius);
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover; }

.prev-view a,
.home-view a,
.next-view a {
  display: block;
  background-color: var(--bs-gray-200);
  color: var(--bs-gray-800);
  width: 3rem;
  height: 3rem;
  border-radius: var(--bs-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none; }
  .prev-view a:hover,
  .home-view a:hover,
  .next-view a:hover {
    background-color: var(--bs-gray-400); }

.thumbnail {
  position: relative;
  padding-top: 56.25%;
  transition: .3s;
  filter: saturate(0);
  transition: .3s; }
  .thumbnail img {
    border-radius: var(--bs-border-radius);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover; }
  .thumbnail:hover {
    filter: saturate(1) brightness(1.1); }
  .thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: var(--bs-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/static/assets/play_button.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
  .thumbnail.notallow::after {
    background-color: #333E;
    background-image: url("/static/assets/lock_button.png"); }

#desc-box {
  line-height: 1.75; }
  #desc-box h1, #desc-box h2, #desc-box h3, #desc-box h4, #desc-box h5, #desc-box h6 {
    color: var(--my-color-1);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem; }
  #desc-box img {
    padding: 1.5rem;
    max-width: 100%; }

footer {
  margin-top: auto;
  position: relative; }

/*# sourceMappingURL=view.css.map */