html {
    scroll-behavior: smooth;
    scrollbar-color: var(--secondary-accent-color) var(--primary-accent-color);
}

body {
    margin: 0;
    box-sizing: border-box;
    font-family: monospace;
    background-color: var(--secondary-accent-color);
    min-height: 100vmin;
    display: flex;
    flex-flow: column nowrap;
}

*,
::before,
::after {
    box-sizing: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
pre {
    margin: 0;
}

ul,
ol {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
pre,
a {
    font-size: inherit;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul,
ol,
button,
input {
    padding: 0;
}

button,
input,
textarea {
    background-color: transparent;
    border: none;
}

a,
button,
input,
textarea,
*:focus {
    outline: none;
}

textarea,
input,
pre {
    width: 0;
}

textarea {
    resize: none;
}

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

img {
    height: 100%;
}
