.footer {
    padding: 10px;
    padding-top: 30px;
    width: 100%;

    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 20px;

    background-color: var(--t3-bg);
    color: var(--t3-text);
}

.footer-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.footer-icons {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-icon svg {
    height: 3em;
    width: 3em;
    flex-shrink: 0;
    fill: currentColor;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    box-sizing: border-box;

    width: 100%;

    background-color: var(--t3-bg-alt);
    border-radius: 8px;

    padding: 20px;
    
}

.footer-links-class {
    display: flex;
    flex-direction: column;
    margin: 10px;
    gap: 5px;
}

.footer-links-class h3 {
    margin: 0;
}

.footer a {
    text-decoration: none;
}

@media (min-width: 786px) {
    .footer {
        flex-direction: row;
        padding: 50px 100px;
    }
    .footer-links, .footer-content {
        width: 25rem;
    }
}