<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>404 - Página não encontrada</title>
  <meta name="viewport" content="width=device-width,initial-scale=1">
  <style>
  body {
    background-color: #EFEFEF;
    color: #666;
    text-align: center;
    font-family: arial, sans-serif;
    margin: 0;
  }
  div.dialog {
    width: 95%;
    max-width: 33em;
    margin: 4em auto 0;
  }
  h1 {
    font-size: 70pt;
    color: #0067a6;
    padding: 0;
    margin: 0;
  }
  .header {
    height: 95px;
    border-top: solid 3px #0067a6;
    margin: 0 !important;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  }
  div.dialog a {
    color: #0067a6;
    font-weight: bold;
    cursor: pointer;
  }
  .img-size {
    width: 200px;
    max-width: 100%;
    height: auto;
  }
  </style>
</head>

<body>
  <!-- This file lives in public/404.html -->

  <script>
  function goBack() {
      window.history.back();
  }
  </script>

  <div class="header"></div>
  <div class="dialog">

      <img src="/http-404-error.png" alt="404" class="img-size">
      <h1>404</h1>
      <h2>Página não encontrada</h2>
      <p>Verifique se o endereço está correto. <br> <a onclick="goBack()">Clique aqui</a> para voltar de onde veio.</p>


  </div>
</body>
</html>
