/* Explain: Base reset, typography, and body background styles. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
            background:
            radial-gradient(circle at 12% 18%, rgba(255, 182, 193, 0.45), transparent 26rem),
            radial-gradient(circle at 88% 8%, rgba(255, 105, 180, 0.15), transparent 24rem),
            var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
}

button,
a,
select {
    cursor: pointer;
}

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

::selection {
    background: var(--accent-color);
    color: #ffffff;
}
