@charset "utf-8";
/* CSS Document */

body {
	width: 100vw;
	height: 100vh;
	margin: 0px;
	padding: 0px;
}
#box {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#box img {
	display: block;
}
@media screen and (min-width: 769px) {
#box img {
	width: 300px;
}
}
@media screen and (max-width: 768px) {
#box img {
	width: 200px;
}	
}