@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap&subset=chinese-traditional");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Noto Sans TC';
}

.error {
  height: 100vh;
  width: 100%;
  color: #3F3D56;
  padding: 5vh;
}

.error h2 {
  text-align: center;
  font-size: 2rem;
}

.error h2 span {
  font-size: 2rem;
  font-weight: bolder;
}

@media only screen and (min-width: 480px) {
  .error h2 {
    font-size: 3rem;
  }
  .error h2 span {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 768px) {
  .error h2 {
    font-size: 4rem;
  }
  .error h2 span {
    font-size: 4rem;
  }
}

.error-text {
  background: url(../images/bg.png) center bottom no-repeat;
  background-size: 100% auto;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0;
  height: 75vh;
  min-height: 570px;
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error-text > * {
  width: 50%;
}

.error-text a {
  color: #E40011;
  font-size: 1.25rem;
}

.error-text img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

@media only screen and (min-width: 480px) {
  .error-text {
    background-position: 40% center;
    background-size: 80% auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .error-text > * {
    width: 25%;
  }
}
/*# sourceMappingURL=style.css.map */