/* Style the video: 100% width and height to cover the entire window */

#videoInicio .video{
  /*position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;*/
  padding-bottom:56.25%;
  height:0;
  overflow: hidden;
  position: relative;
}
video{
  position: absolute;
  height:100%;
  width:100%;
  top:0;
  left:0;
}
#videoInicio .boton{
  z-index: 99;
  position: absolute;
  top: 0;
  left: 50vw;
  margin-top: 10vh;
}

#myBtn {
    width: 100px;
    font-size: 12px;
    border: 1px solid white;
    padding: 8px;
    border-radius: 10px;
    background: black;
    transition: background-color 0.6s;
    color: white;
    cursor: pointer;
}

#myBtn:hover {
    background: #EF7D34;
    color: white;
    transition: background-color 0.6s;
}

  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 600px) {
    #videoInicio .boton {
      left: 42vw;
    }
  }
  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    #videoInicio .boton {
      left: 50vw;
    }
  }