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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* OS-like behavior */
    font-family: var(--font-main, system-ui, -apple-system, sans-serif);
    background-color: #000;
    color: white;
    user-select: none;
    /* Desktop behavior */
    -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
    font: inherit;
    user-select: text;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Utilities */
.hidden {
    display: none !important;
}