

/* Footer */
.footer {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to bottom, #363636, #040404);
    color: white;
    padding: 20px;
    font-size:13px;
    
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}
.footer-column {
    flex: 1;
    margin: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: white;
    text-decoration: none;
}
.footer-column a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-column {
        flex: 100%;
        margin: 10px 0;
    }
}