*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-not-found {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  justify-content: center;
  text-align: center;
  margin-top: 3rem !important;
}

.page-not-found h1 {
  color: #333;
  font-size: 12.5rem;
  letter-spacing: .1em;
  margin: .025em 0;
  text-shadow: .05em .05em 0 rgba(0, 0, 0, .25);
  white-space: nowrap;
  margin-bottom: 0;
}

.page-not-found h2 {
  color: #333;
  margin-bottom: .4em;
  font-weight: 800;
  padding-top: 0px;
  font-size: 40px;
}

.page-not-found h1 span {
  color: red;
}

.page-not-found p {
  color: #333;
  font-size: 15px;
}

.btn-style-three {
  background: red;
  padding: 5px 20px;
  color: white;
  text-decoration: none;
}

.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
      transform: translateY(0);
  }

  100% {
      transform: translateY(-30px);
  }
}

@keyframes mover {
  0% {
      transform: translateY(0);
  }

  100% {
      transform: translateY(-30px);
  }
}

@media(max-width:768px){
  .page-not-found h1 {
font-size: 170px;
}
}