a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
div {
  font-family: "Montserrat", sans-serif;
}
html {
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  align-items: center;
}
/* wraps content of every page, offsets nav height */
.container {
  padding-bottom: 64px;
  flex: 1 0 auto;
  max-width: 1504px;
  position: relative;
  width: 100%;
}

.footer {
  display: flex;
  max-width: 1400px;
  width: 100%;
}
.footer-border {
  border-top: 1px solid #2b2328;
  height: 64px;
  margin: 0 40px;
  width: 100%;
  text-align: center;
  line-height: 64px;
}
/* Button code at parity with button component code */
.button {
  border: 0;
  border-radius: 4px;
  color: #1a1a1a;
  display: inline-block;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.button:hover {
  cursor: pointer;
  animation: bouncy 4s normal linear;
}
.buttonPrimary {
  border: 1px solid rgb(107, 143, 26);
  background: rgb(107, 143, 26);
  color: #fff;
}
.buttonPrimary:hover {
  border: 1px solid rgb(131, 165, 88);
  background: rgb(131, 165, 88);
}
.buttonPrimaryHollow {
  border: 1px solid rgb(107, 143, 26);
  background: rgba(0, 0, 0, 0);
}
.button.buttonPrimaryHollow a {
  color: rgb(107, 143, 26);
}
.buttonPrimaryHollow:hover a {
  color: #fff;
}
.buttonPrimaryHollow:hover {
  background: rgb(107, 143, 26);
}

.buttonWhite {
  border: 1px solid #fff;
  background: #fff;
}
.menu .button.buttonWhite a {
  color: rgb(107, 143, 26);
}
.buttonWhite:hover {
  background: rgb(107, 143, 26);
}
.buttonWhite:hover > a {
  color: white;
}

.bouncy {
  animation: bouncy 4s infinite linear;
  position: relative;
}
@keyframes bouncy {
  0% {
    top: 0em;
  }
  40% {
    top: 0em;
  }
  43% {
    top: -0.6em;
  }
  46% {
    top: 0em;
  }
  48% {
    top: -0.4em;
  }
  50% {
    top: 0em;
  }
  100% {
    top: 0em;
  }
}
