/* Set a fun background image */
body {
  background: url('https://raw.githubusercontent.com/cryptookingg/laugh_coin/main/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* Navbar styling */
.navbar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Centered LOL text */
#lol-header {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  color: #ffcc00; /* Bright yellow for visibility */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Twitter icon */
#twitter-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 10px auto;
  background: url('https://cdn-icons-png.flaticon.com/512/733/733579.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
}

/* Centered hero section */
#home {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px 20px;
  color: white;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}

/* Style the image */
#home img {
  max-width: 200px; /* Smaller image */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Ask section */
#ask {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
}

/* Enlarged input box */
#questionInput {
  font-size: 1.5rem;
  padding: 12px;
}

/* Button Styling */
.btn-primary {
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #ffaa00;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  text-align: center;
}
