#bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    z-index: 1000;
}

.bottom-link {
    height: 50px;
    line-height: 40px;
    flex: 1;
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #eee;
    text-decoration: none;
}

.bottom-link:hover {
    background-color: #444;
    color: #eee;
    text-decoration: none;
}