.liquidity_list {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.liquidity_block-uniswap, .liquidity_block-pancake{
    position: relative;
    height: 50%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.liquidity_item {
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: relative;
    width: calc(90%/2 - 60px);
    height: 450px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.liquidity_head {
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(50deg, #ff8725, #e903f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 50px;
}

.liquidity_list-head {
    display: inline-block;
    max-width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
    background: linear-gradient(50deg, #ff8725, #e903f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 24px;
    font-weight: 500;
}

.liquidity_link {
    padding: 0.7em 1.4em;
    /*margin-bottom: 50px;*/
    background-color: white;
    border: 1px solid black;
    cursor: pointer;

    font-size: 16px;
    font-weight: 400;
}

.liquidity_link:not(:last-child) {
    margin-bottom: 20px;
}