body {
    background-image: url('./img/background.jpg');
    background-size: cover;
    height: 100vh;
    font-family: Helvetica, Noto Sans, sans-serif;
}

h1 {
    margin: 4px;
}

.top-bar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    display: flex;
    backdrop-filter: blur(16px);
    background-color: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    z-index: 1000;
    font-family: Helvetica, Noto Sans, sand-serif;
}

.left-container {
    display: flex;
    align-items: center;
    ;
    gap: 8px;
}

#welcomeopen {
    cursor: pointer;
}

.right-container {
    gap: 8px;
}

#timeElement {
    font-size: 16px;
    font-weight: 600;
}

#dateElement {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

.os-logo {
    width: 32px;
    height: 32px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0, #7c5cff, #4da6ff);
    border-radius: 8px;
    ;
}

.os-name {
    font-size: 18px;
    font-weight: 600;
}

.window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    display: flex;
    flex-direction: column;
}

.window-header {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: move;
    backdrop-filter: blur(16px);
    background-color: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 16px;
    border-radius: 16px 16px 0 0;
}

.close-btn {
    width: 16px;
    height: 16px;
    background-color: rgba(255, 0, 0, 0.75);
    border-radius: 50%;
    margin-right: 16px;
    cursor: pointer;
}

.window-content {
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 0 16px 16px;
}

.window-header p {
    margin: 0;
    font-weight: 600;
}

.avatar {
    border-radius: 50%;
    object-fit: cover;
    width: 128px;
    height: 128px;
}

.desktop-shortcut {
    text-align: center;
    padding: 16px;
    filter: drop-shadow(0 0 8px black);
    width: fit-content;
    margin-top: 8px;
}

.desktop-shortcut img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
}

.selected {
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

#desktopApps {
    padding: 16px 64px 0 0;
    position: fixed;
    top: 128px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notes-container {
    display: flex;
}

.notes-list {
    width: 180px;
}

.note-content {
    flex: 1;
}

.paint-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paint-tools {
    display: flex;
    gap: 8px;
}

.paint-tools input {
    width: 40px;
}

.pixel-grid {
    width: 500px;
    height: 500px;
    display: grid;
    align-content: start;
}

.pixel {
    background-color: white;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

