body, html {
    margin: 0;
    padding: 0;
    background: black;
    color: #0ff;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

#desktop {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

#taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    border-top: 2px solid #0ff;
    height: 30px;
    align-items: center;
}

#apps {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #111;
    padding: 10px;
    border: 2px solid #0ff;
}

button {
    background: black;
    color: #0ff;
    border: 1px solid #0ff;
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
}

button:hover {
    background: #0ff;
    color: black;
}

.window {
    width: 320px;
    height: 300px;
    background: #111;
    border: 2px solid #0ff;
    position: absolute;
    top: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    box-shadow: 0 0 10px #0ff;
}

.titlebar {
    background: black;
    color: #0ff;
    padding: 5px;
    cursor: move;
    border-bottom: 1px solid #0ff;
}

.content {
    flex-grow: 1;
    padding: 10px;
    overflow: auto;
}

#clock, #suspicion {
    font-size: 14px;
}

#bootup {
    width: 100vw;
    height: 100vh;
    background: black;
    color: #0ff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 20px;
}

#bootText {
    white-space: pre-wrap;
    text-align: left;
}

