footer {
    margin-top: auto;
    padding: 10px 0;
    font-size: 1.2rem;
    text-align: center;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #252536;
    border-top: 1px solid var(--amber);
}

footer nav {
    float: right;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}
footer nav a:first-child {
    margin-left: 0;
}

footer nav a {
    margin-left: 80px;
    color: lightgray;
    font-size: 0.9em;
    text-decoration: none;
}

footer nav a[href] {
    position: relative;
}

footer nav a[href]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 1px;
    background-color: lightgray;
    transition: width 0.1s ease-out, left 0.1s ease-out;
}
footer nav a[href]:hover::after {
    width: 100%;
    left: 0;
}
