body {
   margin: 0;
   padding: 0;
   overflow-x:hidden;
}
.mainWrapper {
   /* background: radial-gradient(#0D273A 35%, #1fb8b6 100%); */
   background: #0D273A;
   width: 100vw;
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   overflow: hidden;
   z-index: 1;
}
.mainWrapper .videoContainer {
   width: 1280px;
   max-width: 92vw;
   max-height: 87vh;
   aspect-ratio: 16/9;
   position: relative;
   margin-top: 6.5vh;
   margin-bottom: 6.5vh;
   overflow: hidden;
   border-radius: 20px;
   cursor: pointer;
   z-index: 2;
}

.mainWrapper .videoContainer video {
   width: 101%;
   max-height:100%;
   aspect-ratio: 16/9;
   margin: -0.5% 0 0 -0.5%;
}
.mainWrapper .overlay {
   height: 100vh;
   width: 100vw;
   position: absolute;
   background-image: url("../imgs/g-man-page-bg.png");
   background-position: center center;
   background-size: cover;
   z-index:3;
}

@media only screen and (max-width: 1280px) {
   .mainWrapper {
      align-items: center;
   }
   .mainWrapper .videoContainer {
      width: 100%;
   }
 }