*,*:before,*:after {
  box-sizing: border-box;
}

body {
   font-family: sans-serif;
}
img {  
    width: 100px; 
    float: left; 
    margin-right: 10px; 
} 
.layout {
  display: flex;
  flex-direction: row;
  min-height: 50vh;
}
div {
  border: double;
}
.column {
  flex: 1 0 33.33%;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  align-items: center;
  padding: 1.5em 1em;
}
.column--score {
  background-color: #f20707;
}
.column--active {
  background-color: #A6DDFB;
}
.player-name {
  margin-bottom: 0.5em;
}
.score {
  font-size: 3em;
  margin-bottom: 0.4em;
}

.list--outs, .list--rounds {display: none;}
.list {width: 100%; margin-bottom: 1em;}
.list__title { font-size: 0.8em;  margin-bottom: 1em;}
.list__items li { font-size: 0.9em; margin-bottom: 0.5em; }

.num-pad {
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
}
.num-pad__display {
  width: 100%;
  margin-bottom: 0.5em;
  line-height: 2;
}
.num-pad__button {
  width: 33%;
  flex: 1 0 auto;
  padding: 0.5em;
}

.num-pad__button--submit {
  width: 100%;
  margin-top: 0.5em;
  background-color:red;
  color: #fff;
}

footer {
  text-align: center;
  padding: 3px;
  background-color: White;
  color: Red;
  display: block;
}