@charset "UTF-8";
.balloon {
  position: relative;
  padding: 10px 25px;
  max-width: 372px;
  color: #ffffff;
  background: #2076C7;
  text-align: center;
  margin: 20px auto;
  border-radius: 50px;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #2076C7;
}


