/* Appends emojis to any <p class="nyuszi"> */
p.nyuszi::after {
  content: " 🤠 🌵";      /* put your emojis here */
  margin-left: 0.25em;  /* small gap before them */
  user-select: none;    /* don't get selected on copy */
  pointer-events: none; /* ignore clicks */
}

/* Appends emojis to any <p class="ezerm"> */
p.ezerm::after {
  content: " 🛠 😎";      /* put your emojis here */
  margin-left: 0.25em;  /* small gap before them */
  user-select: none;    /* don't get selected on copy */
  pointer-events: none; /* ignore clicks */
}