/**
 * Footer
 */
footer {
    /**
     * Make sure the footer is all the way at the bottom of the page
     */
    bottom: 0;
    background-color: #111b14;
    color: white;
    text-align: center;
    padding: 5rem 15vw;
    display: flex;
    justify-content: center;
    box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0);
}

aside ~ footer {
    margin-left: 300px;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0 1rem;
    justify-content: center;
    text-align: left;
    border-right: 1px solid #555;
}
footer ul:last-child {
    border-right: none;
}
footer ul li {
    margin: 0;
    padding: 0;
}
footer ul li.title {
    font-weight: bold;
}
footer ul li:last-child {
    border-right: none;
}
footer ul li a {
    display: block;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
}

/**
 * Responsive
 */
@media (max-width: 900px) {
    footer {
        margin-left: 0;
        display: block;
    }
    aside ~ footer {
        margin-left: 0;
    }
    footer ul {
        border-right: none;
        margin-bottom: 2rem;
    }
    footer ul li {
    }
}