.bubble-wrapper {
  display: flex;
  /* flex-direction: column; Only for handheld devices */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  gap: 20px;
  height: 25vh;/* Full viewport height */
  background-color: #f0f8ff; /* Optional background for contrast */
}

.comic-bubble {
  position: relative;
  width: 500px; /* Adjust bubble width */
  padding: 20px; /* Space around text */
  background-color: #0000FF; /* Bubble color ADD8E6 */
  border-radius: 25px; /* Rounded corners */
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
  font-family: Arial, sans-serif; /* Font styling */
  color: #FFFFFF; /* Text color 333 */
  font-size: 16px; /* Adjust text size */
  line-height: 1.5; /* Space between lines */
  text-align: center; /* Center-align text */
}

/* Tail of the bubble */
.comic-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px; /* Position below the bubble */
  left: 30px; /* Adjust the horizontal placement */
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #0000FF transparent transparent transparent; /* Tail matches the bubble ADD8E6 */
}
