:root {
    --Text: white;
    --Secondary: rgba(80, 80, 80, 0.9);
    --Background: rgba(60, 60, 60, 0.9);
    --Primary: rgba(110, 110, 110, 0.9);
}

* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;

}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: var(--Text);
    background-color: var(--Background);
}

.Desktop {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    overflow: hidden;
    flex-direction: column;
    background: radial-gradient(circle at center, var(--Secondary) 0%, var(--Background) 100%);
}