html {
    width: 100%;
    min-width: 360px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;

    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);

    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--zinc-100);
    background-color: black;
    opacity: 0;

    transition: all 0.5s ease-in-out;
}

body * {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    outline: none;
    text-overflow: ellipsis;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-osx-font-smoothing: grayscale;
}

a {
    cursor: pointer;
}

button,
.button,
.button2,
.button3 {
    user-select: none;
}

em {
    font-family: var(--font-family-serif);
    font-style: italic;
}
