body {
  background-color: #ebebeb;
  font-family: "Work Sans", sans-serif;
}

a {
  text-decoration: none;
}

video {
  background-color: black;
}

.modal-wrapper {
  display: none;

  &.show {
    display: block;
  }
}

.container {
  padding: 60px 50px 50px;

  .author-name {
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 2rem;
  }

  .titles {
    padding-bottom: 20px;
    letter-spacing: 0.06rem;
    color: #666;
    font-size: 1rem;
    font-weight: 300;

    span {
      margin: 0 10px;
    }

    a {
      color: #666;
      text-decoration: none;

      &:hover {
        color: black;
        cursor: pointer;
        text-decoration: underline;
      }
    }
  }

  .pagetext {
    padding-bottom: 30px;
    p {
      line-height: 1.5;
      color: #666;
      font-size: 1rem;
      font-weight: 300;
      span {
        font-style: italic;
      }
    }
  }

  .trailer-heading {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .play-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-family: "Work Sans", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 8px;
    cursor: pointer;
    margin-bottom: 4px;
    transition: all 0.2s ease;
  }

  .play-btn:hover {
    background: #000;
    color: #fff;
  }
}
