body{
	background: #000;
	font-family: Arial;
}

.contenedor {
	width: 100%;
	height: auto;
	max-width: 728px;
	margin: auto;
	margin-bottom: 10px;
	margin-top: 10px;
	background-color: #fff;
}

header {
	background-color: #f766f5;
}

header h1 {
	color: #fff;
	text-align: center;
	padding: 20px;
	font-size: 2em;
}

header p {
	margin: auto;
	background-color: #000;
	color: #fff;
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
}

.ads {
	width:100%;
	max-width: 728px;
	height: auto;
	margin: auto;
	background-color: #fff;
}

#juegos {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.juego {
	width: 50%;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	float: right;
	color: #EB4A33;
	text-decoration: none;
	font-size: 1.5em;
	overflow: hidden;
}

.juego:hover {
	background-color: green;
}

.juego img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

@media screen and (max-width: 500px){
	.contenedor {
		width: 95%;
	}
	 header p {
	 	font-size: 0.8em;
	 }
	.juego {
		padding: 10px;
		font-size: 0.8em;
	}
}

