footer 
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 200px;
    background-color: var( --footer-color);
}

.footer-container 
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--footer-font-color);
}

.footer-container .footer-box 
{
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
    min-height: 200px;
}

.footer-container .footer-box h3
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18pt;
    text-transform: uppercase;
    color: var(--footer-font-color);
    border-bottom: 1px solid var(--footer-font-color);
}
.footer-box li
{
    list-style-type: none;
    display: flex;
    align-self: center;
    justify-content: left;
    gap: 3px;
}
.footer-box a
{
    text-decoration: none;
    color: var(--footer-font-color);
    font-size: 12pt;
    cursor: pointer;
}.footer-box a:hover
{
    color: var(--font-box-color-1);
}

#footer-logo 
{
    display: flex;
    justify-content: center;
    align-items: center;
}