<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>eclipsal</title>
  <style>
    body {
      margin: 0;
      background-color: #121212;
      color: white;
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    h1 {
      margin-bottom: 40px;
      font-size: 3em;
    }

    .gif-container {
      width: 300px; /* adjust as needed */
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gif-container img {
      max-width: 100%;
      max-height: 100%;
    }
  </style>
</head>
<body>
  <h1>eclipsal</h1>
  <div class="gif-container">
    <img src="images/test.gif" alt="Eclipsal Animation">
  </div>
</body>
</html>
