#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 {
      @media (max-width: 600px) {
        width: 70%;
      }
      @media (min-width: 601px) and (max-width: 950px) {
        width: 60%;
      }
      @media (min-width: 951px) {
        width: 50%;
      }
    }
  }
  > img {
    margin: 50px 0px 0px 0px;
    max-height: 250px;
    max-width: 100%;
    padding: 0px 15px 0px 15px;
  }
  > main {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: 30px 15px 30px 15px;
    max-width: 900px;
  }
  > #title {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    > #background {
      background-image: url(/img/title-background.png);
      background-position: bottom;
      background-repeat: repeat-x;
      background-size: auto 100%;
      inset: 0;
      position: absolute;
      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;
      height: 150px;
      justify-content: center;
      margin: 0px 15px 0px 15px;
      max-width: 900px;
      > #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;
      }
    }
  }
}
