.allstars {
    display: flex;
    justify-content: space-between;
}

.allstars-conference {
    width: 45%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.player {
    text-align: left;
}

p {
    margin-top: 1rem;;
    text-align: left;
}

.column-number {
    width: 30%;
}

.column-player {
    width: 70%;
}

/* <992 */

@media only screen and (max-width: 992px) {

    .allstars {
        flex-direction: column;
        row-gap: 4rem;
    }

    .allstars-conference {
        width: 100%;
    }

}