.footer {
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 20px;
    width: 400px;
    height: 100px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
    transition: box-shadow 0.5s;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-buttons svg {
    height: 30px;
    width: auto;
    margin: 10px;
    transition: transform 0.5s;
}

.footer:hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.75);
}

svg:hover {
    transform: scale(1.25);
}

.footer .footer-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer .footer-timeline #timeline {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    position: relative;

}

.footer .footer-timeline #timeline {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    position: relative;
    -webkit-appearance: none;
    outline: none;
    transition: background 0.3s;
}

.footer .footer-timeline #timeline::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}