const showSpeech = function () {
ebgamesguy = document.getElementById("ebgamesguy-txt-speech-container");
if (! ebgamesguy.style.display) {
ebgamesguy.style.display = "flex";
}
};
window.addEventListener("load", function () {
console.log("Hello, world!");
showSpeech();
});