html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #111;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.wrap {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: #111;
}

.wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 220px rgba(0, 0, 0, 0.92);
}

@media (max-width: 768px) {
    .wrap img {
        object-position: 90% center;
    }
}
