footer {
    max-width: 1440px;
    place-self: end;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(1, 1fr);
    width: 100%;
    background-color: #00000085;
    height: 86px;
    margin: 0 auto;
    grid-column: 1/-1;
    grid-row: 1/-1;
    order: 1;
}

footer ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    grid-column: 5/9;
}

footer ul a {
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

footer a:hover {
    font-weight: bold;
}