.responsive {
  max-width: 100%;
   width: 100%;
  height: auto;
}



main {
  display: flex;
  justify-content: center;
}

table {
  max-width: 100%;
}

tr:nth-child(odd) {
  background-color: white;
}

th {
  background-color: white;
  color: white;
}

th,
td {
  text-align: left;
  padding: 0.5em 1em;
}

td::before {
  display: none;
}

@media screen and (max-width: 800px) {
 table {
   border: 0;
   display: block;
   box-shadow: none;
 }

 thead {
   position: absolute;
   opacity: 0;
 }
  
 tbody {
   display: block;
   min-width: 19em;
   max-width: 25em;
 }

 tr {
   border-top: 2px solid #3c3c3b;
   border-bottom: 2px solid #3c3c3b;
   display: block;
   margin-bottom: 1em;
   
   
   
 }
 


 

 td {
   border-bottom: 1px solid #3c3c3b;
   display: block;
 }

 td::before {
   display: inline-block;
   font-weight: bold;
   margin-right: auto;
   padding-right: 1em;
 }

 td:last-child {
   border-bottom: 0;
 }
}
