body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.historyBox {
  height: 100%;
  width: 90%;
  margin-top: 5%;
  margin-bottom: 5%;
  border-style: solid;
  border-color: white;
  border-width: 0.01em;
  border-radius: 0.2em;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-grow: 1;
}

.match {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.player {
  font-size: 0.3em;
  padding: 0.1em;
  margin: 0.1em;
}

.player[winner] {
  border-style: solid;
  border-width: thin;
  border-radius: 0.2em;
}

.player[player='0'] {
  color: rgb(255, 0, 0);
}

.player[player='1'] {
  color: rgb(0, 0, 255);
}

.player[player='2'] {
  color: rgb(0, 255, 255);
}

.player[player='3'] {
  color: rgb(255, 165, 0);
}

accordion-component {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.02em;
  margin: 0.02em;

  border-style: dashed;
  border-color: rgb(255,250,240);
  border-width: 0.01em;
  border-radius: 0.2em;
}

accordion-component:hover {
  background-color: rgba(255, 250, 240, 0.2);
}

.accordion-component-title {
  color: rgb(255,250,240);
  text-align: center;
  font-size: 0.3em;
  padding: 0.1em;
  margin: 0.1em;
}
