body {
  margin: 0;
}

.team_wrapper {
  margin-top: 40px;
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.team_box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  height: 100%;
  width: 33.333%;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  color: black;
  font-size: 21px;
  cursor: pointer;
  border-radius: 40px;
}
.team_box.active {
  color: red;
  border: 2px solid red;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

button {
  padding: 1rem 2rem 1rem 2rem;
  border: none;
  background: #555;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}