* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Honeycomb pattern with subtle lens flare */
  background-color: #f4b12a; /* base honey yellow */
  background-image:
    /* hex grid */ radial-gradient(
      circle at 0 0,
      rgba(0, 0, 0, 0.04) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 10px 17.32px,
      rgba(0, 0, 0, 0.04) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 20px 0,
      rgba(0, 0, 0, 0.04) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 30px 17.32px,
      rgba(0, 0, 0, 0.04) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40px 0,
      rgba(0, 0, 0, 0.04) 2px,
      transparent 2px
    ),
    /* soft vertical vignette to add depth */
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(0, 0, 0, 0.03) 70%,
        rgba(0, 0, 0, 0.08) 100%
      ),
    /* subtle lens flare streak */
      radial-gradient(
        ellipse at 25% 18%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.35) 12%,
        rgba(255, 255, 255, 0.08) 24%,
        transparent 40%
      ),
    radial-gradient(
      ellipse at 70% 12%,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.18) 10%,
      transparent 26%
    ),
    radial-gradient(
      ellipse at 82% 28%,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 30%
    );
  background-size:
    /* hex dot positions - width 60px, height 34.64px (sqrt(3)*20) */ 60px
      34.64px,
    60px 34.64px, 60px 34.64px, 60px 34.64px, 60px 34.64px,
    /* vignettes and flares cover whole viewport */ 100% 100%, 100% 100%,
    100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
}

.hive-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -15px;
}

.hive-row {
  display: flex;
  gap: -5px;
  margin-bottom: -25px;
}

.hive-row:nth-child(even) {
  margin-left: 60px;
}

/* Title */
h1 {
  font-family: "Brush Script MT", cursive;
  font-size: 5.5em;
  color: #f8be0f; /* warm orange text */
  text-shadow: 0px 1px 0px #fff3c2,
    /* subtle highlight */ 0px 2px 2px rgba(243, 255, 21, 0.536),
    /* depth shadow */ 0px 4px 6px #ffb520; /* soft glow */
  padding: 20px 40px;
  border-radius: 10px;
}

/* Popup modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.modal-content {
  background: radial-gradient(
      ellipse at 25% 15%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      ellipse at 75% 10%,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0) 50%
    ),
    repeating-linear-gradient(
      60deg,
      rgba(0, 0, 0, 0.03) 0 12px,
      rgba(0, 0, 0, 0) 12px 24px
    ),
    linear-gradient(180deg, #ffe082 0%, #ffca28 45%, #ffb300 100%);
  margin: 10% auto;
  padding: 30px;
  border: none;
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  text-align: left;
  color: #3b2c00;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Image Grid Styles */
.image-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Edge overlay wrapper */
.image-grid-wrap {
  position: relative;
  overflow: hidden;
  /* Shadow reflection from honey-banner above */
  box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.15),
    inset 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}

/* Remove vignette overlay entirely (pure CSS background now) */
.image-grid-wrap::after {
  content: none;
}

/* Fade effect overlay (disabled) */
.image-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
  box-shadow: none;
  background: none;
}

/* Edge-cover overlay disabled (replaced by .edge elements) */
.image-grid::after {
  content: none;
}

.image-row {
  display: flex;
  width: 100%;
  gap: 0;
}

.image-row img {
  flex: 1;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: top;
}

/* Remove Bootstrap padding/margin overrides */
.image-grid .p-0 {
  padding: 0 !important;
}

.image-grid .m-0 {
  margin: 0 !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .hexagon {
    width: 80px;
    height: 80px;
    margin: 5px;
  }

  .hive-row:nth-child(even) {
    margin-left: 40px;
  }

  .hexagon-text {
    font-size: 10px;
    max-width: 60px;
  }
}

/* Honey banner styles */
.honey-banner {
  width: 100%;
  padding: 50px 20px;
  background: linear-gradient(180deg, #ffb300 0%, #ffca28 50%, #ffb300 100%);
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Sophisticated honey-like 3D shadows */
  box-shadow: 
    /* Outer depth shadows - multiple layers for realism */
    0 12px 24px rgba(0, 0, 0, 0.35),
    0 6px 12px rgba(0, 0, 0, 0.25),
    0 3px 6px rgba(0, 0, 0, 0.2),
    /* Inner highlights - honey surface reflection */
    inset 0 3px 6px rgba(255, 255, 255, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(255, 200, 40, 0.3),
    /* Inner depth - honey thickness */
    inset 0 -4px 8px rgba(0, 0, 0, 0.15),
    inset 0 -8px 16px rgba(0, 0, 0, 0.1),
    /* Side glow - honey translucency effect */
    0 0 30px rgba(255, 200, 40, 0.2),
    0 0 60px rgba(255, 180, 0, 0.15);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
  /* Honeycomb pattern background */
  background-image: 
    /* Honeycomb pattern */
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffb300 0%, #ffca28 50%, #ffb300 100%);
  background-size: 
    60px 52px,
    60px 52px,
    60px 52px,
    100% 100%;
  background-position: 
    0 0,
    30px 26px,
    30px 26px,
    0 0;
}

/* Bees container */
.bees-container {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-shrink: 0;
  z-index: 10;
  padding-right: 20px;
}

/* Bee styles */
.bee {
  position: relative;
  display: inline-block;
}

.bee-large {
  width: 120px;
  height: 140px;
  margin-left: 10px;
}

.bee-medium {
  width: 90px;
  height: 110px;
}

.bee-small {
  width: 100px;
  height: 120px;
}

/* Bee body */
.bee-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 50%, #8b4513 100%);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.bee-large .bee-body {
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 20%, #ffd700 40%, #ffa500 60%, #1a1a1a 80%, #2d2d2d 100%);
}

.bee-medium .bee-body {
  width: 60px;
  height: 75px;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 20%, #1a1a1a 40%, #ffd700 60%, #ffa500 80%, #1a1a1a 100%);
}

.bee-small .bee-body {
  width: 70px;
  height: 85px;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 20%, #1a1a1a 40%, #ffd700 60%, #ffa500 80%, #1a1a1a 100%);
}

/* Bee stripes - only for yellow bees */
.bee-medium .bee-body::before,
.bee-small .bee-body::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  height: 6px;
  background: #1a1a1a;
  box-shadow: 
    0 18px 0 #1a1a1a,
    0 36px 0 #1a1a1a;
}

/* Large bee has yellow stripes on dark body */
.bee-large .bee-body::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 8px;
  background: #ffd700;
  box-shadow: 
    0 25px 0 #ffd700,
    0 50px 0 #ffd700;
}

/* Bee wings */
.bee-wings {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  z-index: 1;
}

.wing {
  position: absolute;
  background: rgba(173, 216, 230, 0.6);
  border: 2px solid rgba(135, 206, 250, 0.8);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wing-left {
  left: 10%;
  top: 0;
  width: 35%;
  height: 45%;
  transform: rotate(-20deg);
}

.wing-right {
  right: 10%;
  top: 0;
  width: 35%;
  height: 45%;
  transform: rotate(20deg);
}

.bee-large .wing {
  width: 40%;
  height: 50%;
}

.bee-medium .wing,
.bee-small .wing {
  width: 35%;
  height: 45%;
}

/* Bee glasses */
.bee-glasses {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 25%;
  z-index: 5;
}

.bee-glasses::before,
.bee-glasses::after {
  content: '';
  position: absolute;
  top: 0;
  width: 45%;
  height: 100%;
  border: 3px solid #1a1a1a;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.bee-glasses::before {
  left: 0;
}

.bee-glasses::after {
  right: 0;
}

.bee-large .bee-glasses {
  width: 70%;
  height: 30%;
}

.bee-medium .bee-glasses,
.bee-small .bee-glasses {
  width: 65%;
  height: 28%;
}

/* Bee eyes */
.bee-eyes {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20%;
  z-index: 6;
}

.eye {
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  background: white;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
}

.eye::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 40%;
  height: 40%;
  background: #1a1a1a;
  border-radius: 50%;
}

.eye-left {
  left: 5%;
}

.eye-right {
  right: 5%;
}

/* Bee mouth */
.bee-mouth {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 15%;
  border: 2px solid #1a1a1a;
  border-top: none;
  border-radius: 0 0 50% 50%;
}

.bee-smile {
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  height: 20%;
}

.bee-large .bee-mouth {
  top: 60%;
  width: 35%;
}

/* Bee antennae */
.bee-antennae {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 20%;
  z-index: 2;
}

.antenna {
  position: absolute;
  top: 0;
  width: 2px;
  height: 60%;
  background: #1a1a1a;
  border-radius: 2px;
}

.antenna::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #1a1a1a;
  border-radius: 50%;
}

.antenna-left {
  left: 30%;
  transform: rotate(-15deg);
}

.antenna-right {
  right: 30%;
  transform: rotate(15deg);
}

/* Honey pot */
.honey-pot {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.bee-large .honey-pot {
  left: 60%;
  bottom: -12px;
}

.pot-body {
  width: 35px;
  height: 40px;
  background: linear-gradient(180deg, #8b4513 0%, #654321 100%);
  border: 2px solid #3d2817;
  border-radius: 0 0 8px 8px;
  position: relative;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

.pot-body::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -2px;
  right: -2px;
  height: 8px;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 100%);
  border: 2px solid #8b4513;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pot-handle {
  position: absolute;
  top: 5px;
  right: -8px;
  width: 12px;
  height: 20px;
  border: 3px solid #654321;
  border-left: none;
  border-radius: 0 15px 15px 0;
}

.pot-small .pot-body {
  width: 28px;
  height: 32px;
}

.pot-small .pot-handle {
  width: 10px;
  height: 16px;
  top: 3px;
  right: -6px;
}

.honey-drip {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 100%);
  border-radius: 0 0 50% 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text {
  font-family: "Fredoka One", cursive;
  font-size: 3.5em;
  font-weight: normal;
  color: #8a5c1a;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.text-word {
  position: relative;
  display: inline-block;
  /* Honey-drip 3D effect with multiple shadows */
  color: #ffbd06;
  /* Cartoon effect with outline shadow */
  text-shadow: 
    -2px -2px 0 #84600b,
    2px -2px 0 #84600b,
    -2px 2px 0 #84600b,
    2px 2px 0 #84600b,
    -1px -1px 0 #84600b,
    1px -1px 0 #84600b,
    -1px 1px 0 #84600b,
    1px 1px 0 #84600b;
}

/* Special drip effect for Ç */
.text-word::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

/* Letter styling */
.letter {
  position: relative;
  display: inline-block;
}

/* Cedilla drip effect */
.letter-cedilla {
  position: relative;
}

.honey-drip-char {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 25px;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  z-index: -1;
  animation: drip 2s ease-in-out infinite;
}

.honey-drip-char::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 8px;
  background: linear-gradient(180deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes drip {
  0%, 100% {
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    transform: translateX(-50%) scaleY(1.1);
  }
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {
  .honey-banner {
    padding: 30px 15px;
    flex-direction: column;
    gap: 20px;
    box-shadow: 
      0 8px 16px rgba(0, 0, 0, 0.3),
      0 4px 8px rgba(0, 0, 0, 0.2),
      inset 0 2px 4px rgba(255, 255, 255, 0.4),
      inset 0 -2px 4px rgba(0, 0, 0, 0.12),
      0 0 20px rgba(255, 200, 40, 0.15);
  }
  
  .bees-container {
    gap: 10px;
  }
  
  .bee-large {
    width: 80px;
    height: 100px;
  }
  
  .bee-medium {
    width: 60px;
    height: 80px;
  }
  
  .bee-small {
    width: 70px;
    height: 90px;
  }
  
  .banner-text {
    font-size: 1.8em;
    letter-spacing: 2px;
    text-align: center;
  }
  }

/* Modal layout */
.modal-body {
  display: flex;
  flex-direction: row-reverse; /* text left, image right */
  gap: 24px;
  align-items: center;
}

.modal-left {
  flex: 1 1 50%;
}

.modal-left img {
  width: 100%;
  height: auto;
}

.modal-right {
  flex: 1 1 50%;
  padding-left: 20px;
  border-left: 4px solid rgba(255, 191, 0, 0.35);
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }
  .modal-right {
    border-left: none;
    padding-left: 0;
  }
  .modal-title-blue {
    font-size: 1.8em;
    padding: 10px 0;
  }
}

/* Game links hover effects */
.modal-content a {
  transition: all 0.3s ease;
}

.modal-content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

#modal-header {
  text-align: center;
}

.modal-title-blue {
  color: #0066cc;
  font-family: "Fredoka One", cursive;
  font-size: 2.5em;
  font-weight: normal;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 15px 0;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(0, 102, 204, 0.3);
  letter-spacing: 2px;
  text-transform: capitalize;
}

/* Shiny animation for logo */
.title {
  position: relative;
  overflow: hidden;
  width: 120%;
  transform: translateX(-10%);
}

.title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Floating Bee with Speech Bubble */
.harold-bee-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-direction: row-reverse;
  opacity: 0;
  animation: beeFadeIn 0.5s ease-in 2s forwards;
}

@keyframes beeFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.harold-bee {
  width: 150px;
  height: 150px;
  position: relative;
  animation: beeFloat 3s ease-in-out infinite;
}

@keyframes beeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.harold-bee img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.speech-bubble {
  position: relative;
  background: linear-gradient(180deg, #fff9e6 0%, #ffe082 100%);
  border: 3px solid #ffb300;
  border-radius: 20px;
  padding: 20px 25px;
  max-width: 450px;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: bubbleFadeIn 0.5s ease-in 3s forwards;
  transform-origin: bottom left;
}

@keyframes bubbleFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffb300;
  transform: rotate(20deg);
}

.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffe082;
  transform: rotate(20deg);
}

.speech-bubble-text {
  font-family: "Arial", sans-serif;
  font-size: 1.1em;
  color: #3b2c00;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  word-break: normal;
  overflow-wrap: break-word;
}

.speech-bubble-text .word {
  display: inline-block;
  white-space: nowrap;
}

.speech-bubble-text .char {
  opacity: 0;
  display: inline-block;
}

.speech-bubble-text .char.visible {
  opacity: 1;
  animation: charFadeIn 0.1s ease-in forwards;
}

@keyframes charFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .harold-bee-container {
    bottom: 10px;
    left: 10px;
    gap: 10px;
  }

  .harold-bee {
    width: 100px;
    height: 100px;
  }

  .speech-bubble {
    max-width: 250px;
    min-width: 180px;
    padding: 15px 18px;
    font-size: 1em;
  }
}

