.Bubble-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 80px;
}

.Bubble-container {
  display: inline-block;
  padding: 10px 20px;
}

.floating-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 240px;
  height: 240px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.floating-bubble--image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.floating-bubble--text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
  color: #ffffff;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
