/* Reset basic margins */
body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Comic Sans MS", "Chalkboard SE", sans-serif; /* Meme font classic */
	background-color: #222; /* Dark mode background */
	color: white;
}

/* Center everything on the screen */
body {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.meme-container {
	max-width: 90%;
	padding: 20px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 20px;
}

/* Make image responsive */
.meme-image {
	max-width: 100%; /* Ensure it fits on mobile */
	height: auto; /* Maintain aspect ratio */
	border-radius: 10px; /* Nice rounded corners */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Drop shadow */
	/* border: 2px solid #fff; */
}

p {
	font-size: 1.2rem;
	margin-top: 15px;
	color: #ccc;
}
