<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Centered Image</title>
    <style>
      html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        background-color: black;
      }
      
      .center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
      }
      
      img {
        max-width: 100%;
        max-height: 100%;
      }
    </style>
  </head>
  <body>
    <div class="center">
      <img src="/images/AIVIA.png" alt="Your Image">
    </div>
  </body>
</html>
