html, body{
    height: 100%;
  }
  
  body {
    background: #ffffff;
    font-family: -apple-system, sans-serif;
    color: #000000;
    font-size: 16px;
    line-height: 24px;
  }
    
  .hero-wrapper {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  
  .showcase-wrapper {
    background-color: #000000;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 45px 0;
  }

  .showcase {
    width: 100%;
    max-width: 300px;
    border: 3px solid white;
    border-radius: 57px;
    background-color: black;
  }

  .showcase video {
    width: 100%;
    display: block;
    margin: 0;
    border-radius: 53px;
    border: 4px solid black;
  }
  
  .hero {
    padding: 40px;
  }
  
  .hero h1 {
    font-size: 74px;
    font-weight: 900;
  }
  
  .hero__tagline {
    font-size: 34px;
  }

  .hero__downloads__btn img {
    width: 157px;
  }
  
  .hero__logo {
    width: 70px;
    border-radius: 10px;
    /* border: 1px solid grey; */
  }
  
  @media screen and (min-width: 768px) {
    .h-md-100 {
        height: 100%;
    }
    .showcase {
        max-width: 340px;
    }
    .showcase-wrapper {
        padding: 0;
    }
  }