@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: #1D202B;
	color: #fff;
	font-family: 'Press Start 2P';
}

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

	/* Flexbox */
	/* display: flex;
	gap: 20px; */

	/* Grid */
	display: grid;
}

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

.contenedor-conciertos {
	/* Flexbox */
	/* width: 70%;

	display: flex;
	flex-wrap: wrap;
	gap: 20px; */

	/* Grid */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.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:hover{
	transform: scale(1.2);
	transition-duration: 1s;
	z-index: 2;
}

a .card .textos {
	height: 100%;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-shadow: 
	-2px -2px 0 rgb(0, 0, 0),
	-2px 2px 0 rgb(0, 0, 0),
	2px 2px 0 rgb(0, 0, 0),
	2px -2px 0 rgb(0, 0, 0) ;

}
.link{
	text-decoration: none;
}

.boton{
    background-color: #2091F9;
    justify-self:left;
    padding: 13px 30px;
    border-radius: 32px;
	margin-bottom: 20px;
}
.boton a{
	text-decoration: none;
	color: #fff;
}
.boton:hover{
	background: black;
}

@media screen and (max-width: 900px) {
	body {
		background: #1D202B;
		color: #fff;
		min-height: 100vh;
		flex-direction: column;
	}
	.contenedor-conciertos {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	.boton{
		background-color: #2091F9;
		justify-self:center;
		padding: 13px 30px;
		border-radius: 32px;
		margin-bottom: 20px;
	}
	.boton a{
		text-decoration: none;
		color: #fff;
	}
	.boton:hover{
		background: black;
	}
	.card:hover{
		transform: none;
		z-index: auto;
	}
}

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

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

}