main {
  box-sizing: border-box;
  padding: 20px 30px;
  position: relative;
}

p.link {
  text-align: center;
  font-size: 18px;
}

div#links {
  width: 100%;
  text-align: center;
}

div#links a {
  margin: 5px;
}

a.toTop {
  display: block;
  width: 150px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

h2 {
  font-size: 28px;
  font-weight: lighter;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table,
th,
td {
  border: 1px solid #aaa;
}

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

/* First Column = 60%, last 2 columns = 20% */
th:nth-child(1),
td:nth-child(1) {
  width: 60%;
}

th:nth-child(2),
td:nth-child(2),
th:nth-child(3),
td:nth-child(3) {
  width: 20%;
}

/* First 2 40% last 20% */
table#apparel th:nth-child(1),
table#apparel td:nth-child(1),
table#apparel th:nth-child(2),
table#apparel td:nth-child(2) {
  width: 40%;
}

/* 1st 20 second 60 last 20 */
table#other th:nth-child(1),
table#other td:nth-child(1) {
  width: 20%;
}

table#other th:nth-child(2),
table#other td:nth-child(2) {
  width: 60%;
}

table#other th:nth-child(3),
table#other td:nth-child(3) {
  width: 20%;
}

/* center align 2nd and 3rd columns */
td:nth-child(2),
td:nth-child(3),
th:nth-child(2),
th:nth-child(3) {
  text-align: center;
}

th {
  background-color: #47aa7d;
  color: #fff;
  font-weight: normal;
}

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

@media all and (max-width: 584px) {
  div#links a {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
  }
}
