#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 0px 15px;
    max-width: 900px;
    > img {
      width: 50%;
    }
  }
  > main {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: 30px 15px 30px 15px;
    max-width: 900px;
  }
  > #title {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    > .background {
      background-image: url(/img/plant.png);
      background-position: center;
      background-repeat: repeat-x;
      inset: 0;
      position: absolute;
      @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: 125% auto;
      }
    }
    > .image {
      max-height: 300px;
      max-width: 100%;
      padding: 20px 15px 20px 15px;
      z-index: 2;
    }
    > .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;
          padding: 5px 0px 5px 0px;
        }
        > p {
          display: inline-block;
          margin: 0px 10px 0px 10px;
        }
      }
      > h1 {
        margin: 10px 0px 10px 0px;
      }
    }
  }
}
