		{
            display: flex;
            justify-content: space-evenly; /* Space items equally horizontally */
            align-items: center; /* Align items to the center vertically */
            height: 100vh /* Full viewport height 100vh */
            flex-direction: row; /* Horizontal */
            margin: 0; /* Remove default margin */
        }
        .video-container {
            display: flex;
			justify-content: space-evenly; /* Space items equally horizontally */
            align-items: center; /* Align items in the flex container */
			flex-direction: row; /* Videos in a row */
        }
        .video {
            width: 75%; /* Adjust the width here - was 75% */
            padding: 10px;
			object-fit: cover; /* Cover the area without stretching */			
        }
        video {
            width: 75%; /* Adjust the width here - was 100% */
            height: auto; /* Maintain aspect ratio */
            object-fit: cover; /* Cover the area without stretching */
        }
.image {
    width: 45%; /* Adjust the width of the image - was 45% */
    object-fit: cover; /* Cover the area without stretching */
}
         
	