/* Explain: Base reset and dark atmospheric typography defaults */
* {
    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 16% 10%, rgba(255, 62, 165, 0.22), transparent 28rem),
        radial-gradient(circle at 86% 4%, rgba(40, 244, 225, 0.16), transparent 30rem),
        radial-gradient(circle at 50% 90%, rgba(108, 76, 255, 0.16), transparent 28rem),
        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(--primary-color);
    color: #05050a;
}
