/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.4;
}
body > * {
  width: 100%;
}

header {
  justify-content: center;
}
header .brand-logo {
  margin: 0 auto;
  padding: 2rem 0;
}

main {
  padding: 2rem 0;
  padding-bottom: 6rem;
}

footer {
  background: #adbf5f;
  color: #142405;
  border-top: 3px solid #142405;
  border-width: 4px;
}
footer section:not(:last-child) {
  padding: 2rem 0;
  margin-bottom: unset;
}
footer a {
  color: white;
}
footer a:visited {
  color: white;
}

nav {
  background: #142405;
  padding: 1rem 0;
}
nav .row {
  color: white;
  justify-content: space-between;
  position: relative;
}
nav .row::before {
  position: absolute;
  right: 0;
  top: calc((110px + 1rem) * -1);
  z-index: 2;
  content: "";
  background-image: url("../assets/leaf.png");
  background-size: 100% 100%;
  display: inline-block;
  width: 180px;
  height: 110px;
}
@media only screen and (max-width: 501px) {
  nav .row::before {
    width: calc(260px / 2);
    height: calc(159px / 2);
    top: calc(((159px / 2) + 1rem) * -1);
  }
}
nav a {
  color: white;
}
nav a:visited {
  color: white;
}
nav a:hover {
  color: #cccccc;
}

section {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
section:not(:last-child) {
  margin-bottom: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row .column.is-6, .row .column.is-left, .row .column.is-right {
  flex: 1 0 100%;
}
.row .column.is-6.is-vertical, .row .column.is-left.is-vertical, .row .column.is-right.is-vertical {
  align-self: center;
}
@media only screen and (min-width: 553.2px) {
  .row .column {
    margin-left: -2rem;
    padding-left: 2rem;
  }
  .row .column + .column {
    margin-left: 2rem;
  }
  .row .column.is-6 {
    flex: 1 0 50%;
  }
  .row .column.is-left, .row .column.is-right {
    align-items: center;
    flex: 0 0 auto;
  }
  .row .column.is-left {
    justify-content: flex-start;
  }
  .row .column.is-right {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 552px) {
  .row .column.has-text-center {
    text-align: center;
  }
}

.text-helper p {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

p {
  word-wrap: break-word;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}

a {
  color: #95a843;
  transition: color 0.3s ease;
}
a:visited {
  color: #95a843;
}
a:hover {
  color: #142405;
  cursor: pointer;
}

small {
  display: block;
  font-size: 0.75rem;
}

strong {
  font-family: "Merriweather", "Georgia", serif;
}

hr {
  border-bottom: 3px solid #142405;
}/*# sourceMappingURL=main.css.map */