
/* TC55 320*534 Portrait */
@media only screen 
and (width: 320px){
	img, fieldset {
		display: block;
	}
	
	img {
		margin-left: auto;
		margin-right: auto 		
	}
}

/* TC55 320*534 Landscape */
@media only screen 
and (width: 534px) {
	img, fieldset {
		float: left;
	}
	body {
		margin-top: 20px;
	}
}

body {
	background: white;
}

img {
	width: 200px;
}

fieldset {
	min-width: 320px;
}

section {
	height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	box-shadow: 0 0 0 white;
}


