footer {
	margin: 0;
    padding: 40px 20px;
    background: hsla(237, 54%, 51%, 1);
    background: radial-gradient(circle, hsla(237, 60%, 60%, 1) 0%, hsla(237, 54%, 51%, 1) 100%);
    color: white;
    font-weight: 350;
}

.footer_content {
	margin: 0 auto;
	max-width: 1000px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media screen and (max-width: 1000px) {
    .footer_content {
        flex-direction: column;
    }
    .footer_column {
        margin-bottom: 30px;    
    }
}

.footer_column {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer_column > * {
    margin: 10px;
} 

.footer_content a {
    color: white;
    text-decoration: unset;
}

.footer_media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer_media > a {
    margin: 0 15px;
}

.footer_media > a > img {
    width: 25px;
    filter: invert(1);
}