#page-not-found {
  margin-top: 8.239rem;
  padding: 14rem 2rem 2rem 2rem;
  background-color: #005E60;

  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#page-not-found .content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  #page-not-found {
    padding: 12rem 4rem 6.4rem 4rem;
    flex-direction: row;
    align-items: center;
    gap: 3.2rem;
  }

  #page-not-found .content {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  #page-not-found {
    padding: 12rem 8rem 6.4rem 8rem;
    justify-content: space-between;
  }
}

#page-not-found .goback {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  color: white;
  text-align: center;

  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  font-family: Inter, sans-serif;
}

#page-not-found h1 {
  color: white;
  font-size: 12rem;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  font-family: Sons Condensed,
    sans-serif;
}

#page-not-found p {
  color: white;

  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.5px;
  font-family: Inter, sans-serif;
}