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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    overflow-x: hidden;
    cursor: none;
    /* Custom square cursor will be implemented */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
    cursor: none;
}

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

ul,
ol {
    list-style: none;
}