/* styles.css */
body {
	display: flex;
	flex-direction: column;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #ffffff;
	/* Dark background for contrast */

	/* --- CSS Variables are declared here --- */
	--start-color: #ff0077;
	--end-color: #00ffaa;
	--x-position: 50%;
	--y-position: 50%;

	/* --- Apply the Radial Gradient to the BODY --- */
	background: radial-gradient(circle at var(--x-position) var(--y-position),
			var(--start-color) 0%,
			var(--end-color) 100%);
	transition: background 0.1s ease;
}


#gradient-box {
	width: 300px;
	height: 300px;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	color: rgb(17, 82, 136);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

}


img {
	width: auto;
	height: auto;

	/* 2. THE CRITICAL FIX: Prevent the item from growing or shrinking */
	flex-grow: 0;
	/* PREVENTS the item from growing to fill available space */
	flex-shrink: 0;
	/* PREVENTS the item from shrinking below its content size */
	flex-basis: auto;
	/* Sets the initial size based on the content (the GIF's native size) */
	/*flex: 0 0 auto;*/
}