.team-select {
    width: 1000px;
    display: flex;
}
@media(max-width: 1000px) {
    .team-select {
        width: 100%;
    }
}
.team-select button {
    flex: 1;
    background-color: #eee;
    border: 0;
    cursor: pointer;
    padding: 8px 12px;
    font-weight: bold;
    transition: 0.3s;
    color: #2b2b2b;
}
.team-select button:hover {
    background-color: #cccccc;
    transition: 0.3s;
}
.team-select .active {
    background-color: #cccccc;
}