:root {
    --primaryFontColour: #E7EfE6;
    --secondaryFontColour: #282828;
    --accentColour: #FFB000;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark light;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

p,
li,
figcaption {
    text-wrap: pretty;
    /* max-width: 65ch; */
}

body {
    margin: 0;
    font-size: 1.25rem;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
    pointer-events: none;
}