/*
	Esta comparativa aparece comentada la parte de flexbox, y realizada con grid

	puedes comentar las propiedades de grid y descomentar las de flexbox

	Grid es mejor para plantear estruturas de páginas y flex para acomodar contenidos.

*/


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #1D202B;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}

.contenedor {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 40px 0;

	/* display: flex;
	gap: 1.6rem; */

	/* Con Grid */
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 10px;

	
}

.titulo {
	font-size: 24px;
	padding: 20px 0;
}

.contenedor-conciertos {
	
	/* con Grid*/
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;

	/* display: flex;
	width: 70%;
	flex-wrap: wrap;
	gap: 1.6rem; */
	
}

.card {
	border-radius: 10px;
	min-height: 200px;
	font-weight: bold;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;


	/* Flexbox */
	/* width: calc(33.33% - 20px); */

	
}

.card .textos {
	height: 100%;

	/*Con Grid */
	/* display: grid;
	grid-template-rows: 1fr auto; */

	/* flexbox */
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	
	
}

.banner {
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	background-size: cover;
	background-position: center center;

	/*Flex box */
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;

		/* Con Grid */
		/* display: grid;
		grid-template-rows: auto auto auto;
		align-items: center; */

	


}

.banner ul {
	list-style: none;
}

.banner ul li {
	margin: 15px;
	font-weight: bold;
}

.banner .boton {
	background: #FFD600;
	display: block;
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding: 10px;
	border: none;
	border-radius: 100px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}

@media screen and (max-width: 900px) {
	
}

@media screen and (max-width: 700px) {
	
}

@media screen and (max-width: 600px) {

}