.page404{
  min-height: 80vh;
  position: relative;
  padding-inline: 36px;
  margin: 0px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page404 > div{
  transform: translate(-50%, -35%);
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page404 h1{
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-align: center;
  font-weight: 700;
}

.page404 h2{
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
}

@media (max-width: 992px){
  .page404{
    min-height: 60vh;
  }
  .page404 h1{
    font-size: 40px;
    line-height: 40px;
  }
  .page404 h2{
    font-size: 20px;
    line-height: 20px;
  }
}