.footer-main {
    background-color: var(--dark);
    padding: .5rem;
    color: var(--white);
}
.footer-contain {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    max-width: 1024px;
}
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-header .footer-logo {
    background-color: var(--white);
    border-radius: var(--radius-round);
}
.footer-social-media {
    display: flex;
    justify-content: space-between;
    gap: 0.4em;
    align-items: center;
}
.footer-social-media a {
    text-decoration: none;
    color: var(--dark);
    background-color: var(--white);
    border-radius: var(--radius-round);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}
.column {
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.column a {
    color: var(--white);
    text-decoration: none;
}