/* Make html and body fill the viewport exactly */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;       /* prevents gaps on very short screens */
    background-color: #ffffff; /* fallback color */
}

/* Full-window banner */
body {
    background-image: url('iprc_seized_banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;       /* fills viewport, crops edges if needed */
    background-attachment: fixed; /* optional: stays fixed when scrolling */
}

