@font-face {
    font-family: Windows-XP;
    src: url(../fonts/windows-xp.otf);
}

* {
    image-rendering: pixelated;
}

::selection {
    color: white;
    background: #316ac4;
}

body {
    margin: 0;
    background-image: url(../images/bliss.png);
    background-size: 100vw;
    background-position-x: center;
    font-family: Windows-XP ;
    font-size: 28px;
}

.outer-window {
    background: linear-gradient(180deg,rgba(1, 46, 191, 1) 0%, rgba(50, 91, 227, 1) 6%, rgba(1, 46, 191, 1) 16%, rgba(1, 46, 191, 1) 99%);
    padding: 4px 4px 4px 4px;
    border-radius: 3px;
    color: white;
}

.outer-window p {
    margin: 0;
    padding-left: 4px;
}

.inner-window {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 2px;
}

#todo {
    margin: 20px;
    width: 300px;
}

#todo ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

#clock {
    position: absolute;
    margin: 0;
    bottom: 0.1vw;
    right: 1vw;
    font-size: 1.6vw;
    text-align: right;
    color: white;
}