diff --git a/public/serv-nero.png b/public/serv-nero.png
new file mode 100644
index 0000000..041c65b
Binary files /dev/null and b/public/serv-nero.png differ
diff --git a/src/referto.js b/src/referto.js
index e2aeea3..722b546 100644
--- a/src/referto.js
+++ b/src/referto.js
@@ -81,6 +81,10 @@ export function buildRefertoHtml(state, now = new Date()) {
const nomeVinc = vinc === 'h' ? nomi.home : vinc === 'g' ? nomi.guest : ''
const etichettaVinc = nomeVinc ? ` · vinto da ${nomeVinc}` : ''
+ const servIcon = '
'
+ const servHomeIcon = s.serv === 'h' ? servIcon : ''
+ const servGuestIcon = s.serv === 'g' ? servIcon : ''
+
const puntiHtml = punti.map(p =>
`${p.h}-${p.g}`
).join('')
@@ -90,7 +94,7 @@ export function buildRefertoHtml(state, now = new Date()) {