.notFound {
      min-height: calc(100dvh - 5.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.4rem 0;
  background-color: var(--white);
}

.content {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}

.errorCode {
  font-size: clamp(8rem, 10vw, 16rem);
  color: var(--red);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2.4rem;
  text-transform: none;
}

.title {
  font-size: clamp(2.4rem, 3vw, 4rem);
  color: var(--gray-dark);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  font-weight: 800;
}

.description {
  font-size: 1.8rem;
  color: var(--gray-dark);
  margin-bottom: 4rem;
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.productsLink {
  padding: 0.6rem 2.4rem;
  border: 2px solid var(--red);
  color: var(--red);
  background-color: var(--white);
  border-radius: 2.4rem;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.productsLink:hover {
  background-color: var(--red);
  color: var(--white);
}

@media (max-width: 768px) {
  .notFound {
    padding: 4rem 0;
  min-height: calc(100dvh - 11.4rem);
  }

  .actions {
    flex-direction: column;
  }
}
