/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.meme-container {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 500px;
}

h1 {
  color: #333;
}

#meme-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

#meme-buttons button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#meme-buttons button:hover {
  background-color: #45a049;
}

#meme-buttons button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
