html {
    background-color: #dadddf;
    background-image: none;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    font-family: var(--font-primary) !important;
    background: transparent;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-color: #dadddf;
    background-image: url('../assets/images/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}
