body {
    background-image: url('../assets/images/background.avif');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
}

.clickable {
    user-select: none;
    cursor: pointer;
}

.desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.terminal {
    animation-name: open;
    animation-duration: 1s;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    border: solid #a6a3ca;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    width: 84%;
    backdrop-filter: blur(4px);
    max-width: 900px;
    height: 70%;
    max-height: 501px;
    position: absolute;
}

@keyframes open {
    from {
        opacity: 0;
        scale: 0.1;

    }

    to {
        opacity: 1;
        scale: 1.0;
    }
}

.terminalNavBar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -4px;
    margin-left: 0px;
    font-size: 15px;
    font-family: sans-serif;
}

.terminalNavBar .title {
    display: flex;
    align-items: center;
}

.terminalNavBar .title img {
    height: 20px;
    margin: 4px;
}

.nav-icon img {
    margin: 2px;
    display: flex;
    align-items: center;
    height: 20px;
    transition-duration: 300ms;
}

.separator {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: 99%;
    height: 1px;
    background-color: #a6a3ca;
    margin: 3px 0;
}

.nav-icon img:hover {
    scale: 1.05;
}

.buttons {
    display: flex;
    align-items: center;
}

.terminalBody {
    overflow: auto;
    margin: 10px;
    margin-left: 4px;
    font-family: Consolas, monospace;
    font-size: 1.3ch;
    height: 93%;
}

.caret {
    position: relative;
    top: 0%;
    transform: translate(30%, 18%);
    display: inline-block;
    background-color: white;
    width: 11px;
    height: 20px;
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
    height: 56px;
    border-radius: 8px;
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: #888;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
.lsDiv {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.folderLSDiv{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
body::-webkit-scrollbar {
    display: none;
}