

/* Typography */

h1 {
	font-family: Helvetica, sans-serif;
	font-size: 44px;
	margin-top: 6px;
	margin-bottom: 6px;
}

h2 {
	font-family: Helvetica;
	font-size: 32px;
	padding: 10px;
	display: block;
}

.paragraph {
	width: 800px;
	font-family: times new roman;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	line-height: 32px;

	
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.homeParagraph {
	font-family: times new roman;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 28px;
	padding: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.sectionHeading {
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: times new roman;
	font-style: italic;
	font-size: 36px;

	width: 800px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.heroHeading {
	margin-top: 75px;
	margin-bottom: 75px;
	font-family: times new roman;
	font-style: regular;
	font-size: 36px;
	line-height: 42px;
}




.linkButton {
	width: 200px;
	margin-top: 10px;
	border: black 1px solid;
	background-color: white;
	height: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.linkButton:hover {
	background-color: grey;
}

.linkText {
	/*display: block;*/
	width: 100%;
	text-align: center;
	padding: 12px;
	color: green;
	font-size: 22px;
	font-family: helvetica;
}

.linkText:hover {
	color: blue;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

header {
	max-width: 100%;
	height: 80px;
	font-family: Helvetica, sans-serif;
	font-size: 50px;
	background-color: #99c2ff;
	/*margin-bottom: 20px;*/
}

.mainTitle {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding-top: 10px;
}


.mainContainer {
	max-width: 1000px;
	width: 100%;
	margin: 25px auto;
	background: white;
	/*border: 1px solid black;*/
}


.mainBox {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-template-rows: 450px 300px;
	grid-gap: 30px;
	justify-content: space-between;
}

.boxItem {
	border: 2px solid black;
	border-radius: 10px;
	/*padding: 15px;*/
}

.imgTopRadius {
	border-radius: 10px 10px 0 0;
}

footer {
	height: 50px;
	margin-top: 80px;
	color: blue;
	background-color: #99c2ff;
}

