@font-face {
  font-family: nesFont;
  src: url(font/PressStart2P-Regular.ttf);
}
body {
  color: #ffffff;
  text-shadow: 2px 2px #000000;
  background-color: #000000;
  font-family: nesFont;
}
.rpg_box {
  background-color: #0020c2;
  padding: 5px;
  margin: 2px;
  box-shadow: 5px 5px 5px #000000;
  border: 4px ridge #ffffff;
  border-radius: 10px;
}
#header {
  display: flex;
  flex-direction: row;
  text-align: center;
  max-height: 50px;
  justify-content: space-between;
}
h1 {
  font-size: 24px;
}
#selection_area {
  display: flex;
  flex-direction: row;
}
#drink_sizes {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
}
#drink_weights {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-end;
}
.drink_size {
  min-width: 300px;
  height: 90px;
  text-align: center;
}
.drink_weight {
  min-width: 300px;
  height: 90px;
  text-align: center;
}
.size_icon {
  height: 50px;
}
.weight_icon {
  height: 50px;
}
.selected {
  background-color: #00a060;
}
#player_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#player_box {
  max-height: 100px;
  padding: 25px;
  text-align: center;
}
#player_icon img {
  max-height: 45px;
}
#submit_area {
  display: flex;
  flex-direction: row;
  height: 100px;
  align-items: center;
}
#submit_button {
  display: none;
}
