.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    margin: 0 auto;
    width: max(30%, 500px);
    gap: 30px
}

.footer-bio {
    margin: 0;
}

.footer-navigation {
    border: solid 1px #90909024;
    border-inline-start: none;
    border-inline-end: none;
    padding: 8px 0
}

.footer-navigation .footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 23px;
    padding: 0;
    margin: 0;
}

.footer-navigation .footer-menu-item:not(:first-child)::before {
    content: "•";
    opacity: 0.3;
    padding-inline-end: 20px
}

.footer-copyright {
    font-size: 90%;
    opacity: 0.8
}

.aurora-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 7px;
}

.aurora-footer-socials .social-icon {
    background-color: #8e8e8e15;
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    line-height: 1;
    text-align: center;
    transition: transform 0.6s ease, background-color 0.1s ease
}

.aurora-footer-socials a:hover {
    transform: translateY(-4px) scale(1.15);
    background-color: #8e8e8e2d;
}
@media (max-width:768px) {

    .footer-bio {
        max-width: 80%
    }

    .footer-container {
        width: 100%
    }
}

@media (max-width:480px) {

    .footer-bio {
        max-width: 100%
    }
}