#info {
	background: #000000;
	color: #fff;
}

#info .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#picture {
	width: 100%;
	display: table;
}

#picture img {
	width: 380px;
	height: auto;
}

.texto {
	width: 100%;
}

.texto h3{
	color: rgb(255, 255, 255);
	margin-top: 5%;
	margin-bottom: 0;
	padding-left: 1.2em;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-size: 1.8em;
	
}

.texto p {
	margin-top: 0%;
	padding: 2rem;
	font-size: 1.2em;
	color: rgb(181, 181, 181);
	text-align: justify;
	font-family: 'Nanum Gothic', sans-serif;
}


/* MEDIA QUERYS */

@media (min-width: 480px) {

	#picture {
		width: 50%;
		display: table;
	}

	#picture img {
		padding-left: 0%;
		width: 470px;
		height: auto;
	}

}

@media (min-width: 1024px) {

	#picture {
		width: 50%;
		display: table;
	}

	#picture img {
		padding-left: 0%;
		width: 550px;
		height: auto;
	}

	.texto {
		width: 50%;
	}

	.texto h3{
		margin-top: 5%;
	}

	.texto p {
		margin-top: 15px;
		padding: 0 2rem;
		padding-right: 100px;
		font-size: 1.2em;
	}

}

