#content {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  > #bottom-image-container {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    margin: 0px 15px 100px 15px;
    /* max-width: 900px; */
    max-width: 930px;
    > img {
      width: 50%;
    }
  }
  > main {
    display: flex;
    flex: 1;
    flex-direction: column;
    /* margin: 30px 15px 100px 15px; */
    padding: 40px 15px 100px 15px;
    /* max-width: 900px; */
    max-width: 930px;
    width: 100%;
  }
  > #title {
    background-image: url(/img/plant.png);
    background-position: center;
    background-repeat: repeat-x;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    @media (max-width: 499px) {
      background-size: 300% auto;
    }
    @media (min-width: 500px) and (max-width: 999px) {
      background-size: 200% auto;
    }
    @media (min-width: 1000px) {
      background-size: 100% auto;
    }
    > .overlay {
      background-color: white;
      inset: 0;
      opacity: 0.9;
      position: absolute;
      z-index: 1;
    }
    > .text {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: center;
      margin: 0px 15px 0px 15px;
      max-width: 900px;
      height: 160px;
      z-index: 2;
      > #breadcrumbs {
        > a {
          cursor: pointer;
          display: inline-block;
          font-style: italic;
          padding: 5px 0px 5px 0px;
          text-decoration: none;
          &:hover {
            text-decoration: underline;
          }
        }
        > p {
          display: inline-block;
          margin: 0px 5px 0px 5px;
        }
      }
      > h1 {
        margin: 10px 0px 10px 0px;
      }
      &.homepage {
        height: auto;
        min-height: 290px;
        > h1 {
          line-height: 2;
          margin: 70px 0px 70px 0px;
          text-align: center;
        }
      }
    }
  }
}
