body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@font-face{
    font-family: 'Bold';
    src: url('../fonts/NotoSansHK-Bold.otf');
}
@font-face{
    font-family: 'Regular';
    src: url('../fonts/NotoSansHK-Regular.otf');
}
@font-face{
    font-family: 'Medium';
    src: url('../fonts/NotoSansHK-Medium.otf');
}
@font-face{
    font-family: 'Light';
    src: url('../fonts/NotoSansHK-Light.otf');
}

#header{
    /* background: #ffffff; */
    background-color: transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    /* border-bottom: 1px solid #ddd; */
    /* box-shadow: rgba(0,0,0,.1) 0 5px 10px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#header img{
    max-height: 90px;
}
#header {
  text-shadow: #fff 0 0 20px;
  font-size: 2em;
  font-family: Bold;
  color: #fff;
  /* color: rgb(109, 45, 43); */
}

#content{
    position: relative;
    width: 100%;
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* #bgVid{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
} */

#mainVideo{
    border-radius: 20px;
    box-shadow: #fff 0 0 50px;
}

*:focus, *:active{
    outline: none !important;
}

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
  header #bgVid {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  header .container {
    position: relative;
    z-index: 2;
  }
  
  header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
  }
  
  @media (pointer: coarse) and (hover: none) {
    /* header {
      background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }
    header #bgVid {
      display: none;
    } */
  }

  #header ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  #header ul li{
    display: inline-block;
  }

  #header ul li a{
    color: rgba(0,0,0,.5);
    transition: .8s;
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
    padding: 5px;
  }
  #header ul li a:hover{
    color: #000000;
    text-decoration: none;
    transform: rotate(360deg);
  }