<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <link rel="icon" href="/favicon.ico">
  <title>Page Not Found</title>
  <style>
    .image-container {
      width: 100vw;
      margin: auto;
      max-width: 1200px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .image-container img {
        width: 100%;
        height: 100%;
    }

    .transparent-button {
      cursor: pointer;
      position: absolute;
      top: 82.5%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0);
      padding: 10px 10px;
      width: 15vw;
      height: 7vh;
    }

  </style>
</head>
<body>
  <div class="image-container">
    <img src="/images/404_error.jpg" alt="404 page">
    <button class="transparent-button" onclick="goBack()">Click me</button>
  </div>

  <script>
    function goBack() {
      window.location.href = "/";
    }
  </script>

</body>
</html>
