.background {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  cursor: default;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
}

.typingIndicator {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-around;
}

.sq {
  width: 4px;
  height: 4px;
  background-color: #fefefe;
  border-radius: 50%;
  opacity: 0.1;
}

.sq:nth-child(1) {
  animation: pulsing-dots 1s infinite;
}

.sq:nth-child(2) {
  animation: pulsing-dots 1s 0.25s infinite;
}

.sq:nth-child(3) {
  animation: pulsing-dots 1s 0.5s infinite;
}

@keyframes pulsing-dots {
  0%,
  100% { opacity: 0.1; }
  50% { opacity: 1; }
}
