html{
    background: black;
}

.desktop
{
    height: calc( var(--vj-unit) *7);
    margin-top: 15rem;
    position: relative;
    color: white;

}

.icons
{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
}

.task_bar
{
    position: absolute;
    bottom: 0;
    background: rgb(36,85,213);
    background: linear-gradient(0deg, rgba(36,85,213,1) 88%, rgba(76,137,217,1) 98%); 
    width: 100%;
}

.task_bar #quit
{
    background: rgb(66,160,66);
    background: linear-gradient(90deg, rgba(66,160,66,1) 88%, rgba(19,95,57,1) 98%);
    width: max-content;
    padding: 2px 14px 0 14px;
    border-radius: 0 25% 25% 0; 
    text-decoration: none;
    cursor: pointer;
}