@font-face {
    font-family: "Pragmata";
    src: url("./pragmata.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

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

html {
    height: 100%;
}

body,
#root {
    margin: 0;
    overflow: hidden;
    background-color: #1e1e1e;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    height: 100dvh;
    width: 100%;
    max-width: 100vw;
    overscroll-behavior: none;
    position: fixed;
    inset: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #555;
}
