body {
    color: white;
    background-color: rgb(0, 0, 0);
    /* remove margins and scroll bars */
    margin: 0;
    overflow: hidden;
    height: 100vh;
  
    /* style text */
    text-align: center;
    font-size: 12px;
    font-family: 'Black And White Picture', sans-serif;
  }
  
  h1 {
    position: absolute;
    width: 100%;
  
    /* make sure that the heading is drawn on top */
    z-index: 1;
  }

  h3 {
    font-size: 48px;
  }

  p {
    font-size: 36px;
  }

  @media only screen and (max-width: 768px) {
    h3 {
      font-size: 36px;
    }
    p {
        font-size: 24px;
    }
  }

  iframe {
    border: none;
    height: 165px;
    width: 555px;
  }

  .centered {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .left {
    text-align: left;
  }

  .player-container {
    background-size: cover;
    width: 100%;
    height: 100%;
  }

  .gsap-trigger {
    font-size: 48px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .gsap-trigger {
        font-size: 62px;
    }
}