.pricing_title {
    background-color: white;
    color: black;
    margin: 0;
    text-align: center;
    padding: 6rem;
}

.token_price_section {
    background-color: white;
    width: 100%;
    padding-bottom: 5rem;

}

.token_price {
    border: var(--border-width-l) solid black;
    border-radius: var(--border-radius-s);
    width: 11rem;
    padding: 1rem;
    margin: auto;
    box-shadow: 10px 5px 5px black;
    float: left;
}

.token_price_row {
    display: flex;
    justify-content: space-between;
    border-bottom: var(--border-width-l) solid black;
}

.token_price_row * {
    color: black;
    font-weight: bold;
}

.token_price_row:not(:last-child) {
    margin-bottom: 2rem;
}

@media (hover: hover) {
    .white_background a:hover {
        background-color: var(--navbar-button-background-hover);
    }
}