body {
  background-color: #ffffff;
}

.nav {
  display: none !important;
}

.not-found {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  color: #222222;
  gap: 1rem;
}
.not-found__title {
  color: #222222;
  font-size: 28px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
.not-found__message {
  color: #666666;
  font-size: 14px;
}
.not-found__text {
  max-width: 50ch;
}
.not-found__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  min-width: 140px;
  background-color: #003281;
  border-radius: 2px;
  color: white;
}
.not-found__link:hover {
  background-color: #0054a3;
}
@media screen and (min-width: 992px) {
  .not-found {
    padding: 150px;
  }
  .not-found__title {
    font-size: 90px;
  }
  .not-found__message {
    font-size: 18px;
  }
}