/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.background{
  width: 100%;
  height:100%;
  background-color: hotpink;
  }

/* Gradient fallback if image doesn't load */
body {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, #ff9aa2, #ffb347, #9ad1d4, #88d18a);
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2a2a2a;
  padding: 2rem;
  text-align: center;
}

/* Title card container */
main#content {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 800px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slideUp 1s ease 0.5s forwards;
  opacity: 0;
}

/* Title text with emoji flair */
h1.title {
  font-size: 3rem;
  font-weight: 700;
  color: #d6336c;
  letter-spacing: 5px;
  text-shadow: 1px 1px 3px rgba(255, 182, 193, 0.8);
}

.title::before {
  content: "🍽️ 😀 🍌 🤬 ";
  font-size: 3rem;
  display: block;
  animation: wiggle 1.5s infinite;
}

.title::after {
  content: " 🥗 🥴 🍱 🧠";
  font-size: 3rem;
  display: block;
  animation: wiggle 1.5s infinite reverse;
}

/* Start button styling */
#startBtn {
  font-size: 1.4rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 15px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 127, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1.5rem;
}

#startBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 127, 255, 0.7);
}

/* Animation keyframes */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-5deg); }
  30% { transform: rotate(5deg); }
  45% { transform: rotate(-4deg); }
  60% { transform: rotate(4deg); }
  75% { transform: rotate(-2deg); }
  90% { transform: rotate(2deg); }
}