html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
    background: radial-gradient(circle at top, #020617, #000);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}
