* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f9f9f9 0%, #ececec 100%);
}

button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 18px;
  box-shadow: 0px 3px 8px rgba(255, 77, 77, 0.3);
}

button:hover {
  background-color: #e63939;
  transform: translateY(-1px);
}

.memeContainer {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px;
  width: 320px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.2s ease;
}

.memeContainer:hover {
  transform: scale(1.01);
}

.memeTitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
  /* text-align: center; */
}

.memeImage {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

p {
  font-size: 0.9rem;
  color: #555;
}

.author {
  font-weight: 400;
  font-size: 12px;
  color: #ff4d4d;
}

@media (max-width: 480px) {
  .memeContainer {
    width: 90%;
  }
}

