* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--arme-text);
    font-family: "Inter", Arial, sans-serif;
    background: var(--arme-background);
    transition:
        color 220ms ease,
        background-color 220ms ease;
}

button,
a {
    color: inherit;
    font: inherit;
}

a {
    text-decoration: none;
}
