.bottom-links {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    overflow: visible;
}

.bottom-links li {
    float: none;
}

.bottom-links li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background-color: blue;
    border-radius: 6px;
}

.bottom-links li a:hover {
    background-color: darkblue;
}
