@import "variables.css";

html {
    font-size: 62.5%
}

body {
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    background: var(--bm-app-bg, var(--background-color));
    background-attachment: fixed;
    position: relative;
}

:fullscreen {
    background: var(--bm-app-bg, var(--background-color));
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: var(--bm-bg-0, #0a0612);
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

* {
    box-sizing: border-box;
    font-weight: normal;
}

#root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}