 /* Style the video: 100% width and height to cover the entire window */
 #myVideo {
    position: fixed;
    left: 0;
    bottom: 0;
    min-width: 50%;
    min-height: 100%;
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
  }

@media (max-width: 576px) {
     /* Style the video: 100% width and height to cover the entire window */
 #myVideo {
    position: fixed;
    /* left: 0; */
    top: -25%;
    max-width: 100%;
    /* min-height: 100%; */
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    top: 100;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    /* padding: 20px; */
  }

}

@keyframes example {
    from   {transform: scale(1.1);}
    to {transform: scale(1);
        /* object-fit: cover;
        object-position: center; */
    }
}
@keyframes example-inverse {
    from   {transform: scale(0.9);}
    to {transform: scale(1);
        /* object-fit: cover;
        object-position: center; */
    }
}


#cover-index{
    /* background-image: url(../images/portada.mp4); */
    /* animation-name: example; */
    /* animation-duration: 7s; */
    background-color:  #000000;
    
}
#titulo-index{
    /* animation-name: example-inverse; */
    /* animation-duration: 7s; */
    
}
#subtitulo-index{
    /* animation-name: example-inverse; */
    /* animation-duration: 7s; */
    
}


