<!DOCTYPE html>
<html lang="it">
<head>
  <meta charset="UTF-8">
  <title>Netintegratori - Under maintenance</title>
  <style>
    /* Imposta lo sfondo nero per html e body */
    html, body {
      height: 100%;
      margin: 0;
      background-color: #000;
    }
    body {
      display: flex;
      justify-content: center;  /* centra orizzontalmente */
      align-items: center;      /* centra verticalmente */
    }
img {
    max-width: 100%;
max-height: 100vh;
}
  </style>
</head>
<body>
  <picture>
    <!-- Se la viewport è 768px o meno (mobile) -->
    <source media="(max-width: 768px)" srcset="mobile.png">
    <!-- Altrimenti (desktop) -->
    <img src="desktop.png" alt="Torniamo Presto">
  </picture>
</body>
</html>

