* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 10px;
}

#found {
  position: relative;
  height: 80vh;
}

#found .found {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.found {
  max-width: 710px;
  width: 100%;
  text-align: center;
  padding: 0px 15px;
  line-height: 1.4;
}

.found h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #222;
  margin: 0;
}

.found h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #233;
  margin: 0;
}

.found h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #233;
  margin: 0;
}

.found-search {
  position: relative;
  padding-right: 0px;
  max-width: 420px;
  width: 100%;
  margin: 30px auto 22px;
}

.found-search button {
  font-family: 'Raleway', sans-serif;
  position: center;
  right: 0px;
  top: 0px;
  width: 300px;
  height: 50px;
  text-align: center;
  border: none;
  background: #F24259;
  cursor: pointer;
  padding: 0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  opacity: 0.85;
  transition: 0.3s;
}

.found-search button:hover {
  opacity: 1;
  transform: translateY(-2px);
}