/* Made with love styling */
.made-with-love {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.love-heart {
  color: #e25555;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.flip-text {
  position: relative;
  display: inline-block;
  color: #2e6060;
  font-weight: 600;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  5% { transform: scale(1.2); }
  10% { transform: scale(1); }
  15% { transform: scale(1.2); }
  20% { transform: scale(1); }
  100% { transform: scale(1); }
} 