
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--bg);
    border-top-right-radius: 10%;
    padding: 5rem;
    padding-bottom: 10rem;
}

footer .links {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
}

footer .links > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
}

footer .links > div > h1 {
    font-family: "Bitcount Grid Single", sans-serif;
    font-size: 2.4rem;
}

footer .links > div > a {
    color: var(--gray);
    text-decoration: none;
    font-size: 1.3rem;
}

footer .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
}

footer .title h1 {
    margin: 0 2rem;
    font-size: 7rem;
    text-align: center;
    font-family: "Bitcount Grid Single", sans-serif;
    opacity: .3;
}

@media(max-width: 700px) {
    footer .links {
        flex-direction: column;
    }
}