footer.bbs {
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

.buttons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.buttons a {
    font-weight: 600;
    font-size: 0.9rem;
    background-color: rgba(255,255,255,0.4);
    text-shadow: 0 0 3px #fff;
    border-color: var(--bs-gray-400);
}

.buttons a:link, .buttons a:visited {
    color: #000;
}

.buttons a:hover {
    color: #000;
}

.buttons i {
    font-size: 0.9rem;
}

ul.pagination li {
    white-space: nowrap;
}

@media (min-width: 768px) {
    footer.bbs {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
    }

    ul.pagination {
        margin: 0
    }

    .buttons {
        flex: 0;
        justify-content: flex-start;
        align-items: flex-end;
        margin-left: 0.5rem;
    }
}

main.token {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

main.token label {
    color: var(--bs-orange);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}