@media (max-width: 600px) {
    .notfound-container-image {
      float: center;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .notfound-container-image {
      display: block;
      max-width: 400px;
      max-height: 400px;     
      object-fit: contain;
    }

    .notfound-container-text {
      position: relative;
      top: 20px;
      height: 65px;
      padding-bottom: 20px;
    }

    .notfound-container {
      z-index: 1;
      display: flex;
      flex-direction: column;
      flex-flow: column;
    }
  }
  @media (min-width: 601px) {
    .notfound-container-image {
      float: left;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .notfound-container-image {
      display: block;
      max-width: 400px;
      max-height: 400px;     
      object-fit: contain;
    }

    .notfound-container-text {
      position: relative;
      top: 65px;
      left: 0px;
      height: 65px;
      /* border: 1px solid black; */
    }

    .notfound-container {
      z-index: 1;
      display: flex;
      flex-direction: row;
      flex-flow: row;
    }
  }