* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    /* Standard fallback if container queries aren't fully supported */
    height: 100vh; 
    /* Ensures accurate viewport sizing on mobile browsers when address bars hide/show */
    height: 100dvh; 
    overflow: hidden; 
    background-color: #121214;
}

body {
    display: grid;
    place-items: center;
}

img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Scales and stretches the graphic to completely cover the screen without distortion */
    object-fit: cover; 
    /* Centers the crop area so focal points stay balanced across portrait and landscape viewports */
    object-position: center; 
}
