.footer-copyright {
    align-self: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.aurora-footer-socials {
    display: flex;
    gap: 10px;
}

.aurora-footer-socials a {
    display: inline-flex; 
    height: 35px;
    width: 35px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;             
    background-color: #8f8f8f33;
    transition: background-color 0.2s ease-in, color 0.25s ease-in
}

#site-footer .social-icon:hover {        
    background-color: var(--footer-link-color);
    color: var(--footer-background-color)
}

@media (max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 20px;        
        align-items: center;
    }
}