.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-copyright {
    font-size: 90%;
    opacity: 0.8
}

.aurora-footer-socials {
    display: flex;
    gap: 7px;
}

.aurora-footer-socials .social-icon {
    background-color: #8e8e8e15;
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    align-items: center;         /* vertical center */
    justify-content: center;     /* horizontal center */
    width: 14px;                 /* fixed width */
    height: 14px;
    line-height: 1;              /* avoid extra spacing */
    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%
    }
}