/* Explain: Base reset and dark theme styles for the website. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: var(--background-color);
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 3rem 3rem;
    color: var(--text-color);
}

::selection {
    background: var(--primary-color);
    color: var(--background-color);
}

button,
a {
    cursor: pointer;
}

input,
button,
textarea,
select {
    font: inherit;
    border-radius: 0 !important;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}