/* (A) GALLERY - BIG SCREEN */
#vid-gallery {
  /*display: grid;*/
  grid-template-columns: repeat(1, auto);
  grid-gap: 10px;
}
#vid-gallery video {
  width: 62%;
  
  cursor: pointer;
}

/* (B) GALLERY - SMALL SCREEN */
@media screen and (max-width: 1000px) {
  #vid-gallery { grid-template-columns: repeat(1, auto);
  /*width: 100%;*/
   width: 100%;
  /*margin-left: 9px;*/
  }
  

@media screen and (max-width: 600px) {
  #vid-gallery { grid-template-columns: repeat(1, auto);
	width: 160%;
	height: auto;
	margin-left: -109px;
}