.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 .bubble {
     display: flex;
    flex-direction: column;
     width: 100px;
     height: 100px;
     border-radius: 5%;
     margin: 10px;
     align-content: stretch;
 }
 p {
        font-size: 16px;
        color: #333;
        text-align: center;
 }

 .broken {
        background-color: #d9675d;
 }
 .fixed {
        background-color: #59b15d;
 }

 .sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
}
