/* =Structure ---------------------------*/
body {
  font-family: Arial, sans-serif;
  background-color: #ddd;
  padding: 40px;
  font-size: 16px;
  line-height: 26px;
}

.site {
  background-color: white;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.sponsor {
  padding: 10px;
}

a.unlinked {
  color: inherit;
  text-decoration: none;
}

/* =Elements ---------------------------*/
img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 26px;
}

p {
  margin-bottom: 26px;
}

p:last-child {
  margin-bottom: 0;
}

/* ======== IMPORTANT: TABLE FIX (ADDED SECTION) ======== */

table {
  width: 96%;       /* Fill the container */
  max-width: 96%;   /* Never exceed the container width */
  border-collapse: collapse;
  table-layout: auto; /* Let columns size naturally */
}

/* ================================================ */

/* =Header ---------------------------*/
.site-header {
  padding: 40px;
  text-align: center;
}

.site-title {
  margin: 0;
}

@media (min-width: 800px) {
  .site-title {
    float: left;
  }
}

/* =Navigation ---------------------------*/
.site-navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.site-navigation li {
  display: inline-block;
}

.site-navigation a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  color: #000;
  padding: 0 20px;
}

.site-navigation a:hover {
  color: #4cacbe;
}

@media (min-width: 800px) {
  .site-navigation {
    float: right;
  }
  .site-navigation a {
    padding: 0 0 0 20px;
  }
}

/* =Content ---------------------------*/
.content-wrapper {
  padding: 0 40px;
}

/* =Footer ---------------------------*/
.site-footer {
  overflow: hidden;
  padding: 0 40px 40px 40px;
}

.site-footer a {
  color: white;
}

@media (min-width: 800px) {
  .site-footer {
    clear: both;
  }

  .site-footer .column {
    width: 32%;
    float: left;
    padding-right: 2%;
    margin-bottom: 2%;
  }

  .site-footer .column.last {
    padding-right: 0;
  }
}

