html, body
{
    height: 100%;
    margin: 0;
    padding: 0px;
    overflow: hidden;
}

#container {
  display: flex;              /* establish flex container */
  flex-direction: column;     /* stack flex items vertically */
  justify-content: start;    /* center items from start, in this case */
  align-items: start;        /* center items horizontally, in this case */
}

.header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: Arial;
  font-size: 12px;
  border-bottom: 2px solid;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: lightgrey;
}

.title {
  font-size: 18px;
}

.combo_container {
  display: flex;
  /* border: 2px solid #fa5f05; */
  /* border-radius: 6px; */
  padding: 2px;
}

.damage_combo {
  margin-left: 10px;
}

.help_container {
  font-style: italic;
  color: dodgerblue;
  padding-left: 5px;
  padding-right: 5px;
}

.legend_container {
  display: flex;
}

.legend_item {
  display: flex;
  margin: 5px;
}

.legend_icon {
  width: 20px;
  height: 20px;
  border: 1px solid;

}

#legend_icon_MN {
  background-color: rgba(78, 102, 255, 0.9);
}

#legend_icon_GV {
  background-color: rgba(255, 140, 0, 0.998);
}

#legend_icon_GÇ {
  background-color: rgb(253, 78, 244);
}

#legend_icon_Collapse {
  background-color: rgba(255, 0, 0, 0.9);
}

.legend_text {
  padding-left: 5px;
  font-size: 18px;
}

#canvas
{
  width: auto;
  height: auto;
  background: #fff;
}