.bday-text {
  font-family: 'Henny Penny', cursive;
  font-size: 26px;
  line-height: 1.5;
  color: #ff00e6;
}

.bday-text.blue {
  color: #5aa0ff;
}

@media (min-width: 768px) {
  .bday-text {
    font-size: 28px;
    line-height: 1.7;
  }
}

@media (min-width: 1400px) {
  .bday-text {
    font-size: 34px;
    line-height: 1.7;
  }
}

.bday-text.bot-text {
  font-size: 28px;
}

@media (min-width: 768px) {
  .bday-text.bot-text {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  .bday-text.bot-text {
    font-size: 54px;
  }
}

@media (min-width: 1200px) {
  .bday-text.bot-text {
    font-size: 60px;
  }
}

@media (min-width: 1400px) {
  .bday-text.bot-text {
    font-size: 74px;
  }
}

/* Quote Styling */

#bdQuote p {
  position: relative;
  font-size: 17px;
  line-height: 1.45;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: left;
  color: #000;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  z-index: 2;
  text-shadow: none;
}

@media (min-width: 576px) {
  #bdQuote p {
    font-size: 17px;
    text-align: justify;
  }
}

#bdQuote .speech-bubble {
  display: block;
  width: 100%;
  position: relative;
  background: #fff;
  border: 3px solid #007bff;
  border-radius: .5rem;
  text-shadow: none;
  padding: 15px 20px;
  box-sizing: border-box;
}

#bdQuote .speech-bubble::after {
  content: "";
  display: table;
  clear: both;
}

#bdQuote .speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -17px;
  right: 52px;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: linear-gradient(-45deg, #fff 52%, transparent 0);
  border: 3px solid #007bff;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0;
  box-sizing: border-box;
}

#bdQuote .speech-bubble-signature p {
  margin-top: 25px;
  margin-right: 50px;
  font-size: 20px;
  text-align: right;
  margin-bottom: 30px;
}

