@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
}

image-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 10px;
	max-width: 1000px;
}

image-wrapper img {
	max-width: 100%;
	height: auto;
	margin-bottom: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: transform 0.3s;
}

image-wrapper img:hover {
	transform: scale(1.02);
}
