* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

.user-overlay {
    width: 100%;
    height: 100vh;
    background: rgba(var(--c-scale-5_rgb), 0.5);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.user-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}