body {

    background-image: url(../assets/wallpapers/watchtower.jpg);
    background-size: cover;
    background-color: gray;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.window {
    border: solid;
    width: 128px;
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
    min-height: 30px;
    display: none;
    flex-direction: column;
}

#nav-bar {
    display: flex;
    justify-content: space-between;
    background-color: rgba(14, 13, 13, 0.25);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    align-items: center;
}

.window-handle {
    cursor: move;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 30px;
    min-height: 30px;
    background-color: rgb(161, 101, 167);
    border-bottom: solid;
    align-items: center;
    font-weight: bold;
    font-family: 'Cinzel Decorative', serif;
}

.window-close {
    border-left: solid;
    padding: 0px 5px 0px 5px;
    height: 100%;
    align-content: center;
    cursor: pointer;
}

.window-content {
    width: 100%;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.app-icon {
    display: flex;
    border: solid;
    border-radius: 100%;
    cursor:pointer;
    background-color: rgba(128, 128, 128, 0.25);
    align-items: center;
    justify-content: center;

    width: 75px;
    height: 75px;
}

#desktop {
    display: grid;
    grid-template-columns: repeat(3, 75px);
    grid-auto-rows: 95px;
    gap: 20px;
    padding: 70px 20px 20px 20px;
}

.wallpaper-content {
    padding: 10px;
    box-sizing: border-box;
    overflow-y: auto;
}

.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.wallpaper-selection:hover {
    border-color: black;
}

.wallpaper-selection img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.wallpaper-content p {
    text-align: center;
}