@import url("utils-8c5478c554d06285b5c37774c4a570e2.css");
@import url("header-9bd8ec6d5df51e2e7a6526e2c5cc2738.css");

:root {
    --header-height: 3rem;
    --sidebar-width: 30rem;

    --main-color: black;
    --background-main-color: white;

    --main-z-index: 10;
    --topbar-z-index: 100;
    --sidebar-z-index: 1100;
}

* > * {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

a {
    transition: filter .5s ease;

    &:hover {
        filter: invert(30%);
        transition: filter .5s ease;
    }
}
