table {
  border: 2px solid;
  border-radius: 10px;
  width: 80%;
  border-spacing: 0px;
}

tr:nth-child(2n) {
  background-color: green;
}

th {
  padding: 5px;
  text-align: justify;
  font-weight: 300;
  font-size: 3rem;
}

td {
  padding: 7px;
  text-align: justify;
  font-weight: 200;
  font-size: 1.5rem;
}

#header {
  max-height: 10rem;
}

@media only screen and (max-width: 576px) {
  table {
    width: 95%;
  }
  #header {
    max-height: 4rem;
  }
  th {
    font-size: 1.5rem;
  }

  td {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1800px) and (min-width: 577px) {
  #header {
    max-height: 4rem;
  }
  th {
    font-size: 2.5rem;
  }

  td {
    font-size: 1.5rem;
  }
}
