/* Minimal Tailwind CSS for Flamingo Ice Cream Game */

/* Reset and base styles */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* Background colors */
.bg-pink-50 {
  background-color: rgb(253 242 248);
}

/* Margin utilities */
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* Responsive text sizes */
@media (min-width: 768px) {
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}