body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
#taskbar {
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    padding: 5px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#taskbar a {
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 40px;
    font-size: 20px;
}
#taskbar a:hover {
    /*background-color: #575757;*/
    color: #575757;
}
#taskbar::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Push the gradient down below the taskbar */
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(0, 0, 0, 0));
    z-index: 999;
}
.taskbarLogo{
    height: 100%;
    object-fit: contain;
    max-height: 80px;
}