.superHero {
	display: grid;
	height: 100vh;
	grid-template-columns: repeat(1, minmax(100px, 500px) );
	grid-template-rows: auto;
	justify-content: space-around;
	align-content: center;
	background-size: cover;
}
.superHero__content {
	text-align: center;
}
.superHero__content h2 {
	font-size: 4rem;
}
