JSON data not displaying in scene

https://playcanvas.com/editor/scene/2146073
I am trying to display the data in a JSON using HTML and CSS. The console prints the data fine and dandy but no content is printed in the scene. The html elements are created and styled with the CSS but nothing is showing. I am perplexed…any ideas?

Problem solved i added position: relative to the container CSS

    .container {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            top: 60px;
            padding: 30px;
            width: 95%;
            max-width: 1400px;
            transition: all 0.3s ease;
        }