@charset "UTF-8";

/*//////////----- MOVIE -----//////////*/

#movie{
	background-color:#f8f8f8;
	color:#000;
}

#movie div.content{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:5px;
}

#movie article{
	width:100%;
	
	margin-bottom:10px;
}

@media only screen and (min-width: 720px){
	
	#movie article{
		width:50%;
		
		box-sizing: border-box;
		padding:10px;
		
		margin-bottom:0;
	}
}