body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.navbar {
  background-color: #263238;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.memes-container {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.memes-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.memes-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.meme-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.meme-card img {
  width: 100%;
  border-radius: 8px;
  max-height: 250px;
  object-fit: cover;
}

.meme-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eceff1;
  margin-top: 2rem;
}
