footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 3rem;
    margin-bottom: .5rem;
    color: #fff;
}

.footer-buttons {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.footer-button {
    text-decoration: none;
    margin-top: 1rem;
}

.icon-circle.small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.small i {
    font-size: 1rem;
    color: #000;
}

.footer-copyright {
    font-size: 1rem;
}



@media(max-width:640px) {
    .footer-buttons {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }

    .footer-copyright {
        font-size: .8rem;
    }

}