footer {
    background-color: #000;
    color: #666;
    font-family: sans-serif;
    width: 100%;
    padding: 30px 0;
}

.footer__link-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: end;
    gap: 1rem;
}

.footer__link {
    color: inherit;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 15px #fff;
    padding: 0 20px 0 20px;
    flex-basis: max-content;
    flex-grow: 1;
    cursor: pointer;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__link:active {
    color: #c00;
    text-shadow: 0 0 8px #f00;
}

#footer-copyright {
    text-align: center;
    margin: 30px 0 0 0;
}