@charset "UTF-8";

body {
  font-family: "Lato", sans-serif;
  background-color: rgb(100, 100, 100);
}
/* body {font-family: Arial;} */

h2 {
  text-align: center;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #a3a3a3;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

* {
*   box-sizing: border-box;
*   }
*
*   .row {
*     margin-left:-5px;
*       margin-right:-5px;
*       }
*         
*         .column {
*           float: left;
*             width: 50%;
*               padding: 5px;
*               }
*
*/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

tr:nth-child(even) {
  background-color: #9b9999;
}

tr:nth-child(odd) {
  background-color: #ccc;
}

th, td {
  text-align: left;
  padding: 16px;
}

th {
  background-color: #636363;
  text-align: center;
  font-size: large
}

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