.home {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home .toolbar {
  background-color: coral;
  font-size: 32px;
  padding: 8px;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
}

.home .newGame {
  width: 100%;
  flex: 100 100 0;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home input[type=submit] {
  color: #fff;
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 20px;
}

.home input[type=submit]:hover {
  background-color: #ffffff11;
}

.home .gameHistory {
  width: 100%;
}

.home .game {
  padding: 16px;
}

.home .game:hover {
  background-color: #ffffff11;
}

.home .gamebar {
  width: 100%;
  margin: 8px 0;
  display: flex;
  flex-direction: row;
}

.home .gamebar .metadata {
  flex: 100 100 0;
}

.home .gamebar .rematch {
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .game h3 {
  margin: 0 0 4px 0;
  color: #444444;
}

.home .game h1 {
  margin: 0 0 4px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

.home .game p {
  margin: 0;
  font-size: 18px;
}

.home .game .playerGap {
  white-space: pre-wrap;
}
