body {
  margin: 0;
  padding: 0;
}

table {
  border-spacing: 0;
}

table tr:nth-child(odd) td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

table tr:nth-child(odd) td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

table tr:nth-child(odd) td {
  background-color: #edf7fd;
}

table tr:first-child td {
  background-color: #f2f2f2;
  font-weight: bold;
}

table tr td:first-child {
  width: 20%;
  font-weight: bold;
  text-align: center;
  padding: 25px 0;
}

table tr td:last-child {
  text-align: center;
  padding: 25px 15% 25px 0;
}
@media (max-width:368px) {
  table tr td {
    font-size: 15px
  }
  table tr td:last-child {
    text-align: center;
    padding: 20px 15px;
  }
}