body {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form {
  margin: 1em 0;
}

.teams-placement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#teams-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 600px;
  flex-direction: row;
  max-width: 100vw;
}

.generated-team {
  width: 100%;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#people-by-team {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.people-team {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  margin: 1em 0;
  height: 40px;
}
.selected-team {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  transition: all 0.5s;
  text-align: center;
  color: white;
  font-size: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.people-in-teams {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 600px;
}
.people {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0.5em;
}
