html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
}

body::before {
    content: '';
    position: fixed;      /* stays in place when scrolling */
    inset: 0;             /* full screen */
    background: url('https://cdn.dalenmc.no/assets/DalenMC-Logo.png') center center / 200px auto repeat;
    opacity: 0.05;        /* subtle wallpaper effect */
    pointer-events: none; /* allows clicks through the logo */
    z-index: -1;          /* behind all content */
}