:root {
    --dark-purple: #27133F;
    --light-purple: #802EBF;
    --pink: #AF4CC3;
    --med-purple: #622A95;
    --magenta: #B654F6;
}

#bg {
    background-image: url('icons/bg.jpg');
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

#taskbar {
    background-color: var(--med-purple);
    color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    border-top: white 2px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    overflow-x: auto;
}

#taskbar button {
    display: flex;
    text-align: center;
    justify-content: left;
    align-items: center;
    height: 30px;
    width: 150px;
    background-color: var(--med-purple);
    border-color: black 1px solid;
    border-top-color: white;
    border-left-color: white;
    gap: 5px;
    padding: 2px; 
    margin: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 1000;
    font-family: 'MS Sans Serif', sans-serif;
}

#taskbar p {
    margin: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 1000;
    font-family: 'MS Sans Serif', sans-serif;
}

#start-button {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 70px !important;
    background-color: var(--med-purple);
    border-color: black 1px solid;
    border-top-color: white;
    border-left-color: white;
    gap: 5px;
    padding: 2px;
}

#start-button img {
    height: 25px;
    width: auto;
}

#start-button p {
    margin: 0;
    line-height: 1;
    font-size: 14px;
    font-weight: 1000;
    font-family: 'MS Sans Serif', sans-serif;
}

#icons {
    display: grid;
    gap: 10px;
    padding: 10px;
    align-items: start;
    justify-content: start;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#icons img {
    height: 35px;
    width: auto;
    padding: 10px;
    padding-bottom: 0px
}

.icon p {
    margin: 0;
    font-size: 12px;
    font-family: 'MS Sans Serif', sans-serif;
    text-align: center;
    padding: 5px;
}

#welcome {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 300px;
    text-align: center;
    color: white;
    font-family: 'MS Sans Serif', sans-serif;
    background-color: var(--magenta);
    transition: transorm 0.3s ease opacity 0.3s ease;
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0) scale(1);
}

#drag-handle {
    height: 30px;
    cursor: move;
    background-color: var(--dark-purple);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.warp-hidden {
    opacity: 0;
    pointer-events: none;
}