/* dumbshit.app — landing page custom styles */

html {
    color-scheme: dark;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* subtle grain on body */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: 0;
    opacity: 0.5;
}

body > * {
    position: relative;
    z-index: 1;
}
