.page-404 {
  background: #FFF6F0;
}

.notfound {
  min-height: calc(100vh - 200px); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.notfound__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  width: 368px;
  text-align: center;
}

.notfound__code {
  font-size: 72px;
  font-weight: 600;
  color: #0E7C6B;
  line-height: 1;
}

.notfound__text {
  font-size: 16px;
  color: #4F4F4F;
  line-height: 1.4;
}

.notfound__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border: 1px solid #0E7C6B;
  border-radius: 40px;

  color: #0E7C6B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.2s ease;
}

.notfound__btn:hover {
  background: #0E7C6B;
  color: #fff;
}