const text = "DEVSHADES | DevOps Engineer | Cloud Solutions | Software Development\n\nE) mail@devshades.com".split("");
const typingElement = document.querySelector(".typing");

function typeEffect() {
  if (text.length > 0) {
    typingElement.innerHTML += text.shift();
    setTimeout(typeEffect, Math.floor(Math.random() * 200) + 50);
  }
}

typeEffect();