.twoCols {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

.notFoundPage {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

@media (max-width: 768px) {
  .imgGridArea {
    grid-area: imgArea;
  }

  .textGridArea {
    grid-area: textArea;
  }
  .twoCols {
    grid-template-columns: none;
    grid-template-areas: "textArea" "imgArea";
  }
}
