
* {
  box-sizing: border-box;
}

.header {
  display: flex;
  flex-wrap: wrap;
  padding: 4px, 0, 4px, 0;
  font-family: 'Adobe Garamound Pro';
  font-size: 16px;
  font-style: bold;
  color:black;
}

.title {
  text-align: center;
  font-family: 'Adobe Garamound Pro';
  font-size: 16px;
  font-style: bold;
  color:black;
}

.col2 {
  display: none;
  text-align: center;
  padding: 4px 4px 4px 4px;
  background-color:red;
  display: flex;
}

.note {
  text-align: left;
  flex: 100%;
  max-width: 100%;
  padding: 4px 4px 4px 4px;
  display: flex;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }

  .header{
    display: none;
  }

  .col {
    background-color:lightsteelblue;
  }

  .col2 {
    text-align: center;
    padding: 4px 4px 4px 4px;
    background-color:red;
    display: run-in;
  }

}

/* Create four equal columns that sits next to each other */
.col {
  text-align: center;
  flex: 11.11%;
  max-width: 11.11%;
  padding: 4px 4px 4px 4px;
  display: flex;
}
/* Create narrow display (< 600px) , vertical with text heading in each row followed by value */
.col2 {
  display: none;
}



.row-odd {
  display: flex;
  flex-wrap: wrap;
  padding: 4px,0,4px,0;
  background-color: #C0C0C0
}

.row-even {
  display: flex;
  flex-wrap: wrap;
  padding: 4px,0,4px,0;
  background-color: #B0B0B0;
}





