    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #00002e;
      color: rgb(255, 240, 175);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      gap: 20px;
    }

    h1 {
      font-size: 80px;
    }

    h3 {
      font-size: 50px;
    }

    .box {
      background: #1c1c26;
      padding: 20px;
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-width: 400px;
      margin: 50px;
      text-align: center;
      align-items: center;
    }

    .box canvas {
        max-width: 100%;
        height: auto;
    }

    .lepalle {
      font-size: 20px;
      margin: 20px;
    }

    a {
      color: #7aa2ff;
      text-decoration: none;
      background: #2a2a3a;
    padding: 10px;
    border-radius: 10px;
    border: none;
    }

    a:hover {
      background: #00426e;
      transform: scale(1.05);
        transition: 0.2s;
    }
    /* Regole solo per telefoni (schermi sotto i 600px) */
    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem; /* Rimpicciolisce il titolo che altrimenti va a capo male */
      }
      h3 {
        font-size: 1rem;
      }
                        
      .a {
        width: 75%;      /* Il bottone dello ZIP diventa bello grande e cliccabile */
        text-align: center;
      }
  }

