table {
  margin: 2rem 0;
  width: 100%;

  border-spacing: 0;
}

thead {
  background-color: #f57a3a;
}

thead th:first-child {
  border-top-left-radius: 0.25rem;
}

thead th:last-child{
  border-top-right-radius: 0.25rem;
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.25rem;
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.25rem;
}

th {
  font-weight: 600;
}

td, th {
  border: 1px solid #ececec;
  text-align: left;
  padding: 0.5rem;
}

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

main .upper {
  text-transform: uppercase;
}

main h1, main h2, main h3, main p, main strong {
  color: #101113;
  font-family: "Mukta", sans-serif;
}

main p, main strong {
  line-height: 140%;
}

main h1 {
  display: flex;
  justify-content: center;
  margin: 4rem 0 2rem 0;

  font-size: 2rem;
  text-transform: uppercase;
}

main h2 {
  font-size: 1.125rem;
  text-transform: uppercase;
}

main .info_title {
  font-size: 1rem;
  margin-right: .25rem;
}

main .date {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

main a {
  color: dodgerblue;
  font-weight: 500;
  text-transform: lowercase;
  text-decoration: underline;
}

main section {
  margin-top: 2rem;
}

main p {
  margin-top: 1rem;
}

footer {
  margin-top: 4rem;
}