:root {
  --primary-bg: #eee9df;
  --primary-text: #1f2933;
  --secondary-bg: #e2d6c6;
  --primary-accent: #a35139;
}

body {
  background-color: var(--primary-bg);
  color: var(--primary-text);
  font-family: Readex Pro, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Readex Pro, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

p {
  margin-bottom: 0;
}

.body {
  background-color: var(--primary-bg);
}

.body-2 {
  background-color: var(--primary-bg);
  color: var(--primary-text);
}

.navbar {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.widewrapper {
  flex: 1;
  width: 100%;
  max-width: 800px;
  margin-left: 20px;
  margin-right: 20px;
}

.flexrow {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flexrow.body {
  justify-content: center;
  align-items: center;
}

.flexrow.text {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
}

.image {
  width: 100px;
  height: 100px;
}

.backdrop {
  flex-flow: column;
  justify-content: space-between;
  width: 100svw;
  height: 100svh;
  display: flex;
}

.content {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  padding-top: 40px;
  display: flex;
}

.darkerbg {
  background-color: var(--secondary-bg);
  border-radius: 8px;
  flex: 1;
  padding: 20px 20px 0;
}

.flexcolumn {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.flexcolumn.header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.flexcolumn.body {
  margin-bottom: 80px;
}

.subheading {
  font-size: 20px;
}

.imagewrapper {
  max-width: 50%;
}

.image-2 {
  width: 30px;
  height: 30px;
}

.bodyrich {
  font-size: 16px;
}

.bodyrich p {
  margin-bottom: 20px;
}

.link {
  color: var(--primary-text);
  font-weight: 400;
}

.image-3 {
  width: 16px;
  height: 16px;
}

.text-block {
  font-style: italic;
}

.image-4 {
  transform: rotate(-10deg);
}

@media screen and (max-width: 767px) {
  .image {
    width: 60px;
    height: 60px;
  }

  .flexcolumn.body {
    margin-bottom: 40px;
  }

  .subheading {
    font-size: 16px;
    line-height: 1.2;
  }

  .heading {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
  }

  .flexrow {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flexrow.body {
    flex-flow: column;
  }

  .flexcolumn.body {
    margin-bottom: 0;
  }

  .imagewrapper {
    max-width: 100%;
  }
}


