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

        html {
            --looply-scroll-offset: 128px;
            scroll-behavior: smooth;
            scroll-padding-top: var(--looply-scroll-offset);
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        html::-webkit-scrollbar,
        body::-webkit-scrollbar {
            width: 0;
            height: 0;
            display: none;
        }

        body {
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
