.site-wrapper {
  flex-flow: column;
  display: flex;
}

.brown-body {
  background-color: #1d0e00;
}

.site-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  padding: 2rem;
  display: flex;
  position: relative;
}

.home-image {
  width: 100%;
  max-width: 500px;
}

.site-section {
  width: 100%;
}

.home-content-div {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 31px;
  line-height: 110%;
  display: flex;
}

@media screen and (max-width: 767px) {
  .home-content-div {
    font-size: 24px;
  }
}


