body{
	background-color: #f3f3f3;
	font: normal 17px/28px 'Lato', sans-serif;
}

.size{
    font: normal 17px/28px 'Lato', sans-serif;
}

.sizetwo{
    font: normal 16px/28px 'Lato', sans-serif;
}


.bold{
    color: #045FB4;
}

.gray{
    color: #5d5c5c;
}

main-container{
	margin: 150px auto;
	width: 600px;
}

table{
	background-color: white;
	text-align: left;
	border-collapse: collapse;
	width: 90%;
}

th, td{
	padding: 10px;
}

thead{
	background-color: #045FB4;
	border-bottom: solid 5px #2797ef;
	color: white;
}

tr:nth-child(even){
   /* background-color: #ececec; */
    background-color: #f3f3f3;
}

tr:hover td{
    background-color: #ddf2f7;
	color: #024687;
}


table caption {
    font-size: 2em;
    margin: .5em 0 .75em;
  }

@media screen and (max-width: 600px) {
    table {
      border: 0;
    }
  
    table caption {
      font-size: 1.3em;
    }
    
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }
    
    table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .8em;
      text-align: right;
    }
    
    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  }



