button {
    width: 12rem;
    align-self: center;
}

.standings {
    display: flex;
    justify-content: space-between;
}

.standings-conference {
    width: 45%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.table-team {
    text-align: left;
}

.table-team-team {
    display: flex;
    column-gap: 2rem;
    align-items: center;
    position: relative;
}

.table-team-team-logo {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-team-team-name {
    text-align: left;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.column-number {
    width: 15%;
}

td {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.sportsbet {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.sportsbet img {
    width: 420px;
}

/* <992 */

@media only screen and (max-width: 992px) {

    .standings {
        flex-direction: column;
        row-gap: 4rem;
    }

    .standings-conference {
        width: 100%;
    }

}