/* src/global.css */

html, body {
    height: 100dvh;
    background-color: #000;
}

html {
    overflow: hidden;
    background-color: black;
}
html * {
    user-select: none;
}
body {
    box-sizing: border-box;
    padding:.51rem;
    margin: 0;
    color: white; /* Set a global text color */
    background-color: black; /* Set a global background color */
    user-select: none;
    font-family: 'system-ui','Inter', sans-serif; /* Set a global font */
}

/* Add more global styles as needed */
