body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(255, 255, 255);
  }
  
  canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .image-container {
    position: relative;
    z-index: 1;
  }
  
  .image-container img {
    width: 30%;
    display: block;
    margin: auto;
    width: 50%;
    min-width: 400px;
    max-width: 2000px;
    cursor: pointer;
  }
  
  footer {
    text-align: center;
    color: rgb(200, 200, 200);
    position: absolute;
    bottom: 0; /* Position the footer at the bottom */
    font-family: Arial, sans-serif;
    font-size: 10pt;
    z-index: 2;
  }