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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: hsl(40, 45%, 80%);
  color: hsl(0, 0%, 15%);
}

#flower-container {
  position: relative;
  margin-bottom: 40px; /* Increased margin */
}

svg {
  color: hsl(0, 0%, 20%);
  width: 80vw;
  max-width: 35rem;
  width: 100%;
  height: auto;
  display: block;
}

svg#bee {
  color: hsl(0, 0%, 10%);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: auto;
}

#typing-container {
  text-align: center;
  margin-top: 20px;
}

#typing-text {
  font-size: 24px; /* Increased font size */
  font-family: monospace;
  border-right: 2px solid black;
  white-space: pre-wrap; /* Allow wrapping */
  overflow-wrap: break-word; /* Ensure words break when necessary */
  animation: typing 1s steps(40) 3s forwards;
}


@keyframes typing {
  from { width: 0 }
}
