* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
main{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.main h1 {
  text-align: center;
  margin-top: 15%;
  margin-bottom: 50px;
  font-size: 92px;
  font-weight: bold;
  color: #fff;
}
.main a {
  margin-left:41% ;
  text-decoration: none;
  color: #fff;
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 40px;
  font-family: 'Times New Roman';
  font-weight: bold;
  transition: 0.4s;
}
.main a:hover{
    background-color: #fff;
    color: black;
}
/* video {
  height: 150%;
  width: 150%;
  z-index: -1;
  left: 0;
  right: 0;
  position: absolute;
} */

/*.video-background {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -1; */
/*    overflow: hidden;*/
/*    display: flex;*/
/*    justify-content: center; */
/*    align-items: center;  */
/*}*/

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    overflow: hidden;
}

#bgVideo{
    height: 732px;
    max-width: 100%;
}
@media (max-width: 375px) {
    #bgVideo {
        width: 100%;
        height: auto;
    }
}