/* Explain: Base reset and typography defaults */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: -50%;
    background-image: url('https://files.cdn-files-a.com/uploads/12289510/normal_6a6a2a39a890d.png?format=avif');
    background-size: 150px;
    background-repeat: repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-15deg);
}

[x-cloak] { display: none !important; }

/* Overrides to make text thicker and easier to read */
.font-light {
    font-weight: 500 !important;
}
