* { margin: 0; padding: 0; box-sizing: border-box; } html, body { width: 100%; height: 100%; } h3 { margin: 15px 0; } .camera-view-container { width: 100%; height: calc(100% - 97px); } .bubble-box-container { position: absolute; display: flex; justify-content: center; } .bubble-box-container > .bubble-box { position: absolute; width: max-content; max-width: 20rem; background: white; border-radius: 4px; padding: 4px; word-break: break-all; word-wrap: break-word; box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2); transform: translateY(calc(-100% - 4px)); } .bubble-box-container > .bubble-box::after { content: ""; position: absolute; bottom: -8px; left: calc(50% - 8px); border-left: 8px solid transparent; border-top: 8px solid white; border-right: 8px solid transparent; }