/* CSS for allShows page*/

main {
		padding-left: 2rem;
}

main h2{
	margin-left: 5rem;
}


.nextShow{
	display: grid;
	height: auto;
	width:auto;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0;
	grid-template-areas: 
		"posterAnime showDetails";
	padding-top: 2rem;
}

#posterAnime{
	display: flex;
	grid-area: posterAnime;
	justify-content: center;
}

#showSeptember{
	grid-area: showDetails;
	justify-items: center;
	text-align: start;
	vertical-align: bottom;
}


#showSeptember h4{
	margin: 0;
	font-size: clamp(1rem, 5vw, 2rem);
}

#showSeptember h2{
	margin-top: 0;
	margin-left: 0;
	font-weight: 1;
	font-size: 4rem;
	max-width: 30ch;
}


#showSeptember p{
	margin-top: 0;
	font-family: 'Libre Franklin', sans-serif;
	font-size: clamp(1rem, 2.18rem, 3rem);
	width: clamp(15rem, 50rem, 70rem);
}

.posterGallery{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	grid-gap: 5px;
	justify-content: center;
}


/*-----------------Media Queries-------------*/
@media screen and (max-width: 1400px){

	.nextShow{
		grid-gap: 3rem;
	}

	#showSeptember p{
	margin-top: 0;
	font-size: clamp(1rem, 2.18rem, 3rem);
	width: clamp(15rem, 45rem, 70rem);
	}
}



/*Large screens*/
@media screen and (max-width: 1230px){

	.nextShow{
		grid-gap: 1em ;
	}

	#posterAnime img{
		height: auto;
		width: 350px;
	}

}   


/*laptops*/
@media screen and (max-width: 992px){

.main h2{
	font-size: clamp(3rem, 4rem, 5.625rem);
	max-width: 20ch;
}


#showSeptember h4{

	font-size: 1.5rem;

}


#showSeptember h2{

	font-weight: 1;
	font-size: 3rem;
	max-width: 15ch;

}

#showSeptember p{
	
	font-size: 2rem;
	width: 30ch;
}

}



@media screen and (max-width: 768px){
.main h2{
    margin-left: 1rem;
	}
}



/*mobile*/
@media screen and (max-width: 576px){

.posterGallery{
	margin-left: 75%;
}
}


