html, body{
    height: 100%;
  }
  
  body {
    background: #ffffff;
    font-family: -apple-system, sans-serif;
    color: #00000;
    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: #fff200;
    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: 5px solid white;
    border-radius: 45px;
    background-color: black;
  }

  .showcase video {
    width: 100%;
    display: block;
    margin: 0;
    border-radius: 40px;
    border: 10px solid black;
  }
  
  .hero {
    padding: 40px;
  }
  
  .hero h1 {
    font-size: 34px;
    line-height: 43px;
  }
  
  .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;
    }
  }