body {
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: verdana, arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #000000;
  background: #535943;
}
header.highlight {
  margin-bottom: 1.5rem;
  margin-top: 0;
}
h1 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
}
h2 {
  font-size: 1.7rem;
}
h1,
h2 {
  font-family: 'Nanum Pen Script', comic sans ms, arial, cursive;
  color: #311601;
}
a {
  color: #1c72ac;
  text-decoration: none;
}
ul {
  padding: 0;
}
.left {
  text-align: left;
}

.wrapper {
  background: #f8e6d7;
  margin: 0;
  padding: 2rem 8%;
}

.menu {
  margin-bottom: 1.5rem;
}

.menu ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
.menu ul li {
  background: #523b1c;
  padding: 0;
  color: #f8e6d7;
  text-transform: uppercase;
  font-size: 0.625rem;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.menu ul li:hover {
  background: #d6810e;
  cursor: pointer;
}

.menu ul li a, .menu ul li p {
  color: inherit;
  display: inline-block;
  height: 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  padding: 1rem 0 2rem;
}

.main h3 + a {
  font-weight: 600;
}
.pull {
  font-weight: bold;
}

.blurb {
  font-weight: bold;
  font-style: italic;
}

.main-page-header {
  margin-top: 1rem;
}

.highlight {
  background: #c6df8b;
  padding: 2rem;
  margin-top: 3rem;
}

.highlight header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlight-light {
  background: #c6df8b70;
}

.highlight:nth-child(even) {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.highlight:nth-child(odd) {
  border-bottom-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.name {
  font-weight: 600;
}

.video {
  margin: 3rem 0;
}

.donate {
margin-bottom: 3rem;
}

#active-page {
  background: #966b32;
  color: #fff8f2;
  cursor: auto;
}

.gardening-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

.gardening-menu ul li {
  background: #88ca01;
  color: #ffffff;
  font-size: 0.9rem;
  margin-right: 0;
  padding: 0;
}

.gardening-menu ul li:hover {
  background: #cac71b;
}

.gardening-menu ul li a {
  display: inline-block;
  height: 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------- Non-Retina Screens ----------- */
@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .wrapper {
      margin: 0 8%;
    }
    
    .menu ul {
      grid-template-columns: repeat(4, 1fr);
    }

    .gardening-menu ul {
      /* display: grid; */
      grid-template-columns: repeat(6, 1fr);
      /* grid-gap: 2rem; */
    }
    
}

/* ----------- Retina Screens ----------- */
@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1600px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (min-resolution: 192dpi) { 
}