* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .logo {
  width: 204px;
  height: 48px;
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 920px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
}

.notfound.active {
    display: block;
}

.notfound .notfound-404 {
  position: absolute;
  height: 100px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.notfound h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 34px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
  line-height: 1;
}

.notfound .notfound-404 h2 {
  font-family: 'Open Sans', sans-serif;
  color: #f3f3f3;
  font-weight: 900;
  font-size: 250px;
  margin: 0px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound p {
  font-family: 'Open Sans', sans-serif;
  max-width: 600px;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  /* text-transform: uppercase; */
  margin: 24px auto 32px;
  line-height: 1.5;
}

.notfound a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #000;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  background-color: #333;
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 h2 {
    font-size: 180px;
  }
  .notfound h1 {
    font-size: 27px;
  }
  .notfound p {
    font-size: 16px;
  }
}
