body{
    background-color: black;
    background: black;
}


#videobackground {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }



  /* Para tener un ancho máximo debemos de establecer el width del DIV.delimitador */
.delimitador{
    width:100%;
    margin:auto;
    }
    /* El contenedor con el padding-top crea el tamaño del vídeo */
    .contenedor{
    height:0px;
    width:100%;
    max-width:100%; /* Así establecemos el ancho máximo (si lo queremos) */
    padding-top:56.25%; /* Relación: 16/9 = 56.25% */
    position:absolute;
    }
    /* El iframe se adapta al tamaño del contenedor */
    video{
    position:absolute;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    }