/* Base Reset and Box Sizing */

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

html {
    height: 100%;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
    background-color: var(--win98-teal);
    height: 100vh;
    margin: 0;
    overflow: hidden;
    padding: 20px;
    padding-bottom: var(--taskbar-height); /* 为任务栏留出空间 */
}
