/* Explain: Base reset, typography, and site-wide background image. */
* {
    box-sizing: border-box;
}

html {
    color: var(--text-color);
}

body {
    margin: 0;
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background-image: url('https://files.cdn-files-a.com/uploads/12319002/normal_6a8185bd28c8d.png?format=avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #000;
}

img {
    display: block;
    max-width: 100%;
}