<!DOCTYPE html>

<html lang="it">

<head>

 <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">

  <title>Sito in manutenzione</title>

  <style>

    body {

      margin: 0;

      padding: 0;

      background-color: #f7f7f7;

      font-family: Arial, sans-serif;

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100vh;

      text-align: center;

    }

    .message {

      padding: 40px;

      background-color: #fff;

      border: 1px solid #ddd;

      border-radius: 10px;

      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    }

    .message h1 {

      font-size: 2em;

      color: #333;

    }

    .message p {

      color: #777;

      margin-top: 10px;

    }

  </style>

</head>

<body>

  <div class="message">

    <h1>SITO IN MANUTENZIONE</h1>

    <p>Stiamo lavorando per migliorare il servizio. Torna a trovarci presto!</p>

  </div>

</body>

</html>