/* Default stylesheet and tools */
body,
html {
	background: rgb(245, 245, 245);
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: flex;
}

#container {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
}

#container-image{
	border-radius: 10px;
	transition: all 0.1s;
	display: flex;
	width: 100%;
}

#container-image > div {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center; 
	/* border-right: 1px solid rgb(200, 200, 200); */
}

img{
	width: 100%;
	border-radius: 10px;
	transition: all 0.1s;
	display: none;
}
