body {
  margin: 0;
  padding: 0;
  background: url("assets/dungeon-exterior.jpg");
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-block;
  color: #fea;
  font-size: 1.2rem;
  margin: 0.5rem 1rem;
  padding: 0.5rem 1rem;
  background: url("assets/dungeon-interior.jpg");
  border: 1px solid black;
  align-self: flex-end;
}

.panel {
  max-width: 36rem;
}

.character, .monster {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.monster {
  border: 1px solid black;
}

.character .character-name {
  font-size: 1.5rem;
  text-align: center;
}

.monster .character-name {
  font-size: 1.2rem;
  text-align: center;
}

.character .character-class {
  font-size: 1.2rem;
  text-align: center;
}

.monster .character-class {
  font-size: 1.5rem;
  text-align: center;
}

.character-hp {
  font-size: 1.2rem;
  text-align: center;
}

.monster .stats-box {
  display: flex;
  flex-direction: row-wrap;
}

.character .stat-score {
  font-size: 2rem;
  padding: 1rem;
}

.monster .stat-score {
  font-size: 1.2rem;
  padding: 0 0.5rem 0 1rem;
}

.stat-name {
  font-size: 1.2rem;
}

.character .stat-name {
  font-weight: bold;
}

.extra-name {
  font-weight: bold;
  margin-left: 1rem;
  margin-right: 0.5rem;
  flex: 0 1 auto;
}

.extra-description {
  flex: 1 1 auto;
}

.stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.extra-row {
  display: flex;
  flex-direction: row;
  flex: 0 1 auto;
}

.description-row {
  display: flex;
  flex-direction: row;
  flex: 0 1 auto;
  justify-content: center;
}

.description-name {
  text-align: right;
  font-style: italic;
}

.description-row > div {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  flex: 1 1 1rem;
}

#gm {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
}