.notFound {
  display: grid;
  place-items: center;
  padding: 96px;
}

.notFound .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 96px;
}

.notFound .leftContainer,
.notFound .rightContainer {
  width: 50%;
}

.notFound .error {
  color: var(--thirdary);
  font-weight: 500;
  font-size: 16px;
}

.notFound .heading {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 60px;
}

.notFound .description {
  font-size: 20px;
  color: var(--text-light);
}

.notFound .rightContainer img {
  width: 100%;
  max-height: 70vh;
}

.notFound .buttonContainer {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 850px) {
  .notFound {
    padding: 40px;
  }

  .notFound .container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .notFound .leftContainer,
  .notFound .rightContainer {
    width: 100%;
  }

  .notFound .rightContainer img {
    width: 70%;
  }

  .notFound .error {
    font-size: 11px;
  }

  .notFound .heading {
    font-size: 45px;
  }

  .notFound .description {
    font-size: 15px;
  }
}
