.guide-container {
    position: absolute;
    z-index: 12000;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    width: 100px;
}

.guide-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 2px black) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

.speech-bubble {
    position: relative;
    background: #0078d7;
    color: white;
    border-radius: .8em;
    padding: 10px 10px;
    max-width: 300px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 0 2px black, 2px 4px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.speech-bubble i,
.speech-bubble b,
.speech-bubble em,
.speech-bubble strong {
    display: inline;
}

.speech-bubble h2,
.speech-bubble h3 {
    margin: 5px 0;
}

.speech-bubble h2:first-child,
.speech-bubble h3:first-child {
    margin-top: 0;
}

.speech-bubble h2:last-child,
.speech-bubble h3:last-child {
    margin-bottom: 0;
}

.guide-next {
    margin-top: 6px;
    background: #0078d7;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.speech-bubble img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    margin: 2px 5px;
}

.speech-bubble span[align='left'] {
    text-align: left;
    display: block;
    width: 100%;
}