@charset "UTF-8";
/*    CSS style sheet for Blind Sighted Productions. Written by Thomas Tivnen 11/10/2024,
Contact: thomastivnen@hotmail.com    */

 /*    setting for new uploaded videos first div box    */
 
 .videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* renders to 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin-right: 25%;
  margin-bottom: 50px;
  margin-left: 25%;
  border: 10px solid #909090; 
} 

@media screen and (max-width:1024px){
     body  {
		width: 100%; max-width: 1024px;
		height: auto; 	
     }
     .videoWrapper iframe {
     	position: absolute;
     	top: 0;
     	left: 0;
     	width: 100%;
     	height: 100%;
     	margin-right: 0;
     	margin-bottom: 50px;
     	margin-left: 0;
     	border: none; 
     } 
   
}
