:root {
  --green: #116433;
  --neon: #4cc417;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  /* Load 'System' fonts for body text */
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  background: white;
  color: #006633;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.Home {
}

.FullHeight {
  justify-content: space-between;
}

main {
  /* For simplicity's sake, let's set a maximum width to 1024px */
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 5%;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1280px) {
  main {
    padding: 2.5em 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
nav {
  font-family: 'Libre Baskerville', serif;
}
figure {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto; /* default */
}
a {
  color: #006633;
  text-decoration: none;
}
a:hover {
  color: var(--neon);
}
a.neon {
  color: #4cc417;
}
a.neon:hover {
  color: #116433;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
hr {
  max-width: 590px;
  margin: 2em auto;
  padding: 0 5%;
}
@media (min-width: 768px) {
  hr {
    margin: 4em auto;
  }
}
@media (min-width: 1024px) {
  figure img {
    display: block;
  }
}

/* --- Navigation --- */

nav {
  color: var(--green);
  text-align: center;
  line-height: 1.6;
}
nav a {
  text-transform: lowercase;
  text-decoration: none;
  font-size: 22px;
  display: inline-block;
  margin: 0 0.5em;
  white-space: nowrap;
}
nav img {
  vertical-align: middle;
  margin-bottom: 1em;
}
nav a.active {
  color: var(--neon);
}
nav span {
  display: block;
  visibility: hidden;
  height: 0;
}
nav + figure {
  margin: 1em 0;
}

/* --- Homepage Links --- */

.Links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0;
}
.Links figure {
  max-width: 30%;
}
.Links p {
  margin: 0 1em 0 0;
}

@media (min-width: 667px) {
  nav span:not(:first-of-type) {
    display: inline;
    visibility: visible;
    height: auto;
  }
  .Links a {
    max-width: 47.5%;
  }
  .Links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }
}
@media (min-width: 1024px) {
  nav span:first-of-type {
    display: inline;
    visibility: visible;
    height: auto;
  }
  nav a {
    font-size: 24px;
  }
  nav img {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .Links {
    margin: 0 5%;
  }
}

/* --- Story --- */

nav + section {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 3em;
}

.Story {
  color: #000000;
  padding: 0 0;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
}
.Story img {
  margin-left: auto;
  margin-right: auto;
}

.Center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Logos --- */


.LogosBuy {
  text-align: center;
}
.LogosBuy img {
  width: 150px;
  margin: 2em auto;
  display: block;
}

@media (min-width: 1024px) {
  .LogosBuy {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .LogosBuy img {
    margin: 2em 25px;
  }
}


.LogosSocial {
  text-align: center;
}
.LogosSocial a {
  display: inline-block;
  vertical-align: middle;
  margin: 2em 25px;
}
.LogosSocial img {
  width: 40px;
  vertical-align: middle;
}


/* --- Buy --- */



.Split > :nth-child(2) {
  margin-top: 2em;
  text-align: center;
}


@media (min-width: 1024px) {
  .Split {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .Split > :nth-child(2) {
    margin-top: 0;
    margin-left: 1em;
  }
}











/* --- Table Hacks --- */

table table {
  width: auto !important;
}
table table br {
  display: none;
}
table table p {
  margin-bottom: 1em;
}
table td {
  display: block;
  text-align: center;
  margin: 1em auto;
}
table table p b {
  font-size: larger;
}
@media (min-width: 1024px) {
  table td {
    display: table-cell;
    text-align: left;
    margin: auto;
  }
  table table {
    width: 250px !important;
  }
}
