body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    font-family: sans-serif;
    font-weight: 200;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.login {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("https://storage.verdantia.de/os/lbg.png");
    opacity: 1;
    transition: 2s;
    z-index: 1000;
}

.logind {
    width: 100px;
    display: flex;
    flex-direction:column;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logind img {
    height: 50px;
}

.logind button {
    position: relative;
    width: 55px;
    height: 30px;
    transform: translate(-50%);
    left: 50%;
}

.login.opened {
    transform: scale(10);
    opacity: 0;
    pointer-events: none;
}

.desktop {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    background-image: url("https://storage.verdantia.de/os/acc/fnaf/bg/img.png");
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    grid-auto-rows: 80px;
}

.desktopDiv.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.desktopDiv.selected {
    background-color: rgba(255, 255, 255, 0.5);
}

.desktopDiv.selected.active {
    background-color: rgba(255, 255, 255, 0.7);
}

.taskbar {
    width: 100%;
    height: 40px;
    position: absolute;
    top: calc(100% - 41px);
    left: 0;
    z-index: 999;
}

.glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.taskbarapps {
    position: relative;
    height: 100%;
    width: fit-content;
    left: 50%;
    transform: translate(-50%);
    align-content: center;
    display: flex;
}

.taskbarapp {
    height: 40px;
    width: 50px;
}
.taskbarapp img {
    height: 30px;
    width: 30px;
    position: relative;
    top: 5px;
    left: 10px;
}

.taskbarapp.active {
    background-color: rgba(255, 255, 255, 0.404);
}

.taskbarapp.active:hover {
    background-color: rgba(255, 255, 255, 0.541);
}

.taskbarapp:hover {
    background-color: rgba(255, 255, 255, 0.11);
}

.tbaactiveline.active{
    width: 50px;
    height: 1px;
    background-color: rgb(57, 192, 255);
    position: relative;
    top: 5px;
}


