html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #e88a2b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
}

.thought-bubble {
  position: relative;
  background: #fffbe7;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  padding: 24px 40px;
  margin-bottom: 24px;
  font-size: 2rem;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  color: #d2691e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thought-bubble::after, .thought-bubble::before {
  content: '';
  position: absolute;
  background: #fffbe7;
  border-radius: 50%;
}

.thought-bubble::before {
  width: 24px;
  height: 24px;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
}

.thought-bubble::after {
  width: 14px;
  height: 14px;
  left: 54%;
  bottom: -40px;
  transform: translateX(-50%);
}

.center-image {
  max-width: 350px;
  width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 1;
}

.description {
  margin-top: 18px;
  font-size: 1.5rem;
  color: #ffe066;
  font-family: 'Luckiest Guy', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  text-align: center;
  opacity: 0.98;
  max-width: 90vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -1cm;
  text-shadow: 0 0 8px #ffb300, 0 2px 4px #e88a2b;
  letter-spacing: 1px;
  animation: bonk-bounce 1.2s infinite alternate cubic-bezier(.68,-0.55,.27,1.55);
}

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

@keyframes bonk-bounce {
  0% { transform: translateY(0) scale(1) translateX(-1cm); }
  60% { transform: translateY(-6px) scale(1.04) translateX(-1cm); }
  100% { transform: translateY(0) scale(1) translateX(-1cm); }
} 