.cfb > a {
    background-color: var(--color-main);
    color: var(--color-white);
    border-radius: 10px;
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 600;
}

.cfb > a:hover {
    text-decoration: underline;
    background-color: var(--color-main-alter);
}

.cfb > a > i {
    margin-right: 10px;
}

.cfb > p {
    margin-bottom: 50px;
}

.members {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.members > div {
    width: 25%;
}

@media screen and (max-width: 1450px) {
    .cfb-members h2 {
        font-size: 16px;
    }
}

@media screen and (max-width: 800px) {
    .cfb {
        padding: 0 10px;
    }

    .cfb > a {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .members > div {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}