@import url("all.css");
@import url("responsive_nav_bar_3.css");
@import url("footer_1.css");



body {
	min-height: 100vh;
	background-color: var(--base-color-1);
	color: var(--text-color-1);
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		"header"
		"main"
		"footer";
}


main {
	grid-area: main;
	grid-template-rows: auto;
	background: var(--base-color-1);
}

#page_banner {
	display: grid;
	align-content: center;
	justify-items: center;
	background: url("../img/bg grass field.png") no-repeat;
	background-size: cover;
	width: 100%;
	height: 600px;
	
	h1 {
		color: #ffffff;
	}
	
	img {
		width: 150px;
		height: 150px;
		margin: 10px;
	}
}


.GridContainer {
	margin: 50px auto;
	width: min(1100px, 95%);
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
	grid-template-columns: repeat(auto-fit, 342px);
	justify-content: center;
	gap: 1em;
}

.GridContainer .Card {
	display: grid;
	grid-template-rows: 1fr auto 100%;
	align-content: start;
}

.Card * {
	justify-self: center;
}

.Card > h3 {
	margin-top: 10px;
	text-align: center;
}

.Card > p {
	text-align: center;
}

