{%- endmacro -%}
{% macro splitToLetters(tag='p', class='', text='') %}
{% set words = text | split("") %}
{%- for word in words -%}<{{tag}} class="{{ class }}{% if word == " " %}d-inline{% endif %}">{{ word }}{{tag}}>{%- endfor -%}
{% endmacro %}
{% macro typewriter(tag="", class="", staticText="", typewriter="", offsetStart="10", offsetAdd="5") %}