/* ------------------------------------------------------------------------------
@name: Custom Style
@description: If want custom style in here
--------------------------------------------------------------------------------- */

/* not-found */
.not-found {
  background-color: #a1947a;
  height: 100%;
  width: 100%;
}
.not-found__inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not-found__img {
  display: block;
  object-fit: cover;
}
@media only screen and (max-width: 575.86px) {
  .not-found__img {
    width: 70%;
  }
}
.not-found__title {
  font-family: "Century Gothic", sans-serif;
  font-size: 2.6rem;
  line-height: 3.2rem;
  margin-bottom: 24px;
}
@media only screen and (max-width: 575.86px) {
  .not-found__title h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 320px) {
  .not-found__title h2 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.not-found__link {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-decoration: none;
}
