@media screen and (max-width: 1280px) {
    @property --visibleWidth {
        syntax: "<length> | <percentage>";
        inherits: true;
        initial-value: 100svw;
    }
    html
    {
        width: max(720px, var(--visibleWidth));
    }
}