/* Make all images fill the screen */ img { width: 100vw; height: 100vh; object-fit: cover; /* crop while filling */ display: block; } /* Optional: make background images fill too */ .sqs-block-image .image-block-wrapper img { width: 100vw; height: 100vh; object-fit: cover; } /* Remove padding/margins around images if needed */ .sqs-block-image { padding: 0; margin: 0; }