.footer {
    /* margin-top: 4rem; */
    text-align: center;
    background-color: rgba(17, 17, 17, 0.85);
    color: #aaaaaa;
    position: relative;
    z-index: 1;
    border-top: 1px solid #50505070
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-container .material-icons-outlined,
.footer-container i {
    vertical-align: middle;
    margin-right: 0.5rem;
    color: #a259ff;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-right a {
    color: #ccc;
    margin-left: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-right a:hover {
    color: #a259ff;
}

.social-icon {
    fill: #a259ff;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    fill: #ffffff;
}


@media (max-width: 870px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-container > * {
        width: 100%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        display: block;
        text-align: center;
        align-items: center;
    }
}