* {
    user-select: none;
    box-sizing: border-box;
}


body {
    padding: 0;
    margin: 0;
    font-family: "Doto-VariableFont_ROND,wght";
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light {
    background-color: rgb(234, 238, 241);
}
body.dark {
    background-color: #111;
    color: rgb(175, 175, 175);
}


@font-face {
    font-family: 'Doto-VariableFont_ROND,wght';
    src: url('/fonts/Doto-VariableFont_ROND,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

