.desktop 
{
    display: flex;
    align-items: flex-start;
}
  
.icon 
{
    margin-top: 10vh; /* 100px */
    margin-left: 6vw; /* 100px */
    text-align: center;
    color: white;
    cursor: pointer;
}

.icon:hover
{
    border: 0.125rem dotted white; /* 2px */
    background: #00000055;
}

.icon:active 
{
    border: 0.125rem dotted white;
    background-color: #000080aa;
}

.icon span 
{
    display: none;
    font-size: 0.9375rem; /* 15px */
    color: white;
}

.icon:hover span 
{
    display: block;
}

.icon img
{
    width: 12vw;
    height: 22vh;
}

.taskbar 
{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 7vh;
    background: silver;
    border-top: 0.125rem solid #ffffff;
    border-bottom: 0.125rem solid #000000;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    z-index: 1000;
}
  
.taskbar .start-button 
{
    display: flex;
    align-items: center;
    gap: 0.4375rem; /* 7px */
    background: #c0c0c0;
    border: 0.125rem solid #000; /* 2px */
    border-top-color: #fff;
    border-left-color: #fff;
    cursor: pointer;
    user-select: none;
}

.taskbar :active
{
    background-color: #a0a0a0;
    border-color: #000 #fff #fff #000;
}

.taskbar-menu
{
    position: fixed;
    bottom: 6.5vh; /* 50px */
    left: 2vw;   /* 10px */
    background: #8d8d8d;
    border: 0.125rem solid #000; /* 2px */
    border-top-color: #fff;
    border-left-color: #fff;
    width: auto;
    z-index: 1001;
}

.taskbar-menu-items .menu-item
{
    padding: 0.625rem;         /* 10px */
    background: #c0c0c0;
    margin-left: 1.875rem;     /* 30px */
    cursor: pointer;
}

.taskbar-menu-items .menu-item:hover
{
    background-color: #000080;
    color: white;
}

.taskbar-menu-items .first-menu-item
{
    padding: 0.625rem;         /* 10px */
    background: #c0c0c0;
    border-top: 0.125rem solid white;  /* 2px */
    box-shadow: 0 -0.125rem 0 #797979; /* 2px */
    margin-left: 1.875rem;     /* 30px */
    cursor: pointer;
}

.taskbar-menu-items .first-menu-item:hover
{
    background-color: #000080;
    color: white;
}

.taskbar .start-button span
{
    font-size: 1.5vh;     /* 12px */
    padding: 0 0.1875rem;    /* 0px 3px */
}

.taskbar .start-button img
{
    padding: 0 -0.75rem;     /* 0px -12px */
    width: 5vh;        /* 35px */
    height: auto;       /* 35px */
}
  
.taskbar-items 
{
    flex: 1;
    margin-left: 0.625rem; /* 10px */
    display: flex;
    gap: 0.5rem;            /* 8px */
}

.desktop-name
{
    position: fixed;
    bottom: 0;
    left: 1;
    right: 0;
    font-size: 2vh;
    margin-bottom: 1.4%;
    margin-right: 2.4%;
    z-index: 1000;
    user-select: none;
}

.leng-button
{
    position: fixed;
    bottom: 1;
    left: 1;
    right: 0;
    /* background-color: #c0c0c0;
    border: 0.1875rem solid;
    border-color: #fff #000 #000 #fff; */
    margin-top: 0.9rem;
    margin-right: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.leng-button img
{
    padding: 0.5rem;
    width: 4vw;
    height: auto;
    user-select: none;
    pointer-events: none;
}