/* Basic */

.container_language{
	position: relative;
	height: 100vh;
	width: 100vw;
	margin: 0;
	
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.container_language img{
	width: 250px;
	max-width: 25vw;
	height: auto;
}

.instructions{
	width: 100vw;
	text-align: center;
	margin: 25px 0 25px 0;
	padding: 10px 0 10px 0;
	
	text-transform: uppercase;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);;
}

/* Basic */

.container_language  img{
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%);
	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.container_language  img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	transform: scale(1.05);
}