  .error-page-container {
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-size: cover;
      position: relative;
      padding: 0 20px;
  }

  .error-page-container:after {
      content: '';
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      position: absolute;
      top: 0;
      left: 0;
  }

  .error-page-container * {
      position: relative;
      z-index: 1;
  }

  .error-page-container img {
      width: 100%;
      max-width: 500px;
      margin-bottom: 25px;
  }

  .error-page-container h4 {
      color: #333;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .error-page-container .button {
      display: inline-block;
      margin-top: 20px;
      padding: 16px 30px;
      color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      text-transform: uppercase;
      font-family: "Montserrat", sans-serif;
      font-weight: 500;
      letter-spacing: 1px;
      border-radius: 50px;
      background: #ff9000;
  }

  .error-page-container .button:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }