.speech-box-wrapper {
    margin: 2rem auto;
    max-width: 70vw;
    background-color: #2b3b8f; /* Example SNES-style blue */
    border: 2px solid #ccc;
    border-radius: 8px;
    color: white;
    padding: 1rem;
  }

  .speech-box-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .speech-box-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .tiny-text {
        font-size: 0.7rem;
      }

  @media (max-width: 768px) {
    .speech-box-wrapper {
      max-width: 100vw;
      margin: 0.5rem;
    }

    .speech-box-content {
      flex-direction: row;
    }
  }