@media only screen and (min-width: 1200px) {
  /* Background color */
  body {
    background-color: #160b2d;
    overflow-x: hidden;
  }
  .video-container {
    background-color: #160b2d;
    padding: 50px 0;
  }
  video {
    width: 870px; /* 设置视频宽度为856px */
    height: auto; /* 高度自适应 */
    max-width: 100%; /* 确保视频宽度不超过容器宽度 */
    padding-left: 400px;
    background-color: #160b2d;
  }

  /* Navigation Start (fixed at the top) */
  .navigation {
    position: fixed; /*the fixed part*/
    padding: 25px 0px 22px 0px;
    border-width: 2px; /*here is border*/
    width: 100%;
    background-color: black;
    text-align: right;
  }

  .myLogo {
    margin: -10px 0px 0px 80px;
  }

  a {
    font-size: 14px;
    font-weight: 200;
    font-family: Helvetica;
    color: white;
    padding-right: 100px;
  }

  a:hover {
    color: #f4b63f;
  }


}
/* Navigation End */
