/* Make all images and videos fill the entire screen */ img, video { width: 100vw; height: 100vh; object-fit: cover; /* fill without distortion, crop if necessary */ display: block; } /* Target Squarespace image & video blocks specifically */ .sqs-block-image .image-block-wrapper img, .sqs-block-video video, .sqs-block-gallery .thumb-image, .sqs-block-gallery video, .gallery-item img, .gallery-item video { width: 100vw !important; height: 100vh !important; object-fit: cover !important; } /* Remove default spacing so content touches edges */ .sqs-block-image, .sqs-block-video, .sqs-block-gallery, .gallery-item { padding: 0 !important; margin: 0 !important; } /* Ensure background images in banners and sections fill screen */ .sqs-block-image .intrinsic, .section-background img, .background-media img, .background-media video { width: 100vw !important; height: 100vh !important; object-fit: cover !important; }