body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url("assets/mountain.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.taskbar-container {
    background: gray;
    margin: 8px;
    height: 32px;
    border-radius: 4px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    overflow: hidden;
    gap: 4px;
}
.taskbar-item {
    width: 32px;
    background-image: url("assets/system.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
}
.taskbar-item:hover {
    background-color: darkgray;
}
.taskbar-item svg {
    width: 24px;
    height: 24px;
}
.window-container {
    background: black;
    border-radius: 4px;
    position: fixed;
    overflow: hidden;
}
.window-controls-container {
    background: gray;
    border-radius: 4px 4px 0px 0px;
    width: 100%;
    height: 16px;
    align-items: right;
    display: flex;
    justify-content: flex-end;
}
.window-controls-item {
    width: fit-content;
    align-items: center;
    width: 16px;
    background-image: url("assets/close.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}
.window-controls-item:hover {
    background-color: darkgray;
}
.window-frame {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 4px 4px;
}
.window-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}
