@font-face {
    font-family: "BookAntiquaRegular";
    src: url(../fonts/BKANT.TTF);
}


body {
    font-family: "BookAntiquaRegular";
    background-color: #f4f2f2;
    color: #33201a;
}
  
  #notfound {
    position: relative;
    height: 100vh;
  }
  
  #notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .notfound {
    width: 100%;
    text-align: center;
  }
  
  .notfound .notfound-404 {
    height: 280px;
    position: relative;
    z-index: -1;
  }
  
  .notfound .notfound-404 h1 {
    font-size: 230px;
    margin: 0px;
    font-weight: 900;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: url('../images/layout/404.jpg') no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    background-position: center;
  }
  
  
  .notfound h2 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .notfound p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .notfound a {
    font-size: 16px;
    text-decoration: none;
    

    border-radius: 0px;
    border-color: #33201a;
    background-color: #33201a;
    color: #FFF;


    
    display: inline-block;
    padding: 10px 30px;
    
  }
  
  .notfound a:hover {
    border-radius: 0px;
    border-color: #dbdbdb;
    background-color: #dbdbdb;
    color: #33201a;
}
  
  
  @media only screen and (max-width: 767px) {
      .notfound .notfound-404 {
        height: 142px;
      }
      .notfound .notfound-404 h1 {
        font-size: 112px;
      }
  }