*{
Margin: 0;
Padding: 0;
}

html,body
{
	height: 100%;
	width: 100vw;
	line-height: normal;
}

body {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: var(--header) auto var(--footer);
	grid-template-areas: 
	"header"
	"main"
	"footer"
	;
	background-color: white;	
}

a:link {
	text-decoration: none;
}

#bodyheader{
	grid-area: header;
}

/*====MAIN SECTION====*/
main
{
	grid-area: main;

	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 300px 150px 250px max-content max-content 200px;
	/* padding-top: 5px; */

	grid-template-areas: 
	"intro"
	"focus"
	"serviceimage"
	"service"
	"benefits"
	"discuss";
	
overflow-x: hidden;
	overflow-y: auto;
}

/*Section 1---------*/
.section1{
	grid-area: intro;
	font-family: "Georgia", "serif","Apple Chancery", "Brush Script MT", "Brush Script Std", cursive;
	background-image:url('../images/businessbackground.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 100% 100%;
	width: 100vw;	
	height: 100%;
}

.focus-grid {
	grid-area: focus;
	
}

#serviceimage {
	grid-area: serviceimage;
	height: 100%;
	width: 100vw;
	background-image: url('../images/standard-quality-control-collage-concept.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section-services-grid {
	grid-area: service;
	background-color: #eee;
}

#section-benefits-grid {
	grid-area: benefits;
}

#message1{
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	color: blue;
	font-weight: bold;
	filter: contrast(250%);
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: white;
	font-size: 45px;
	border: 2px solid white;
	
}


.sectionHeader {
	color: black;
	font-size: 35px;
	font-weight:bolder;
	font-style: italic;
	text-align: center;
	padding-bottom: 5px;
	letter-spacing: 2px;
}

#discuss {
	grid-area: discuss;
	display: grid;
	height: 100%;
	width: 100%;
	/* text-align: center;*/

	/* justify-items: center; */
	background-color: #3457D5;
	color: white;
}

#discusstext, #discusstext > a {
	text-align: center;
	/* padding-top: 30px; */
	height: fit-content;
	align-self: center;
	justify-self: center;
	font-size: 30px;
	color: white;
	font-weight: bolder;
}

.underline {
	text-decoration: underline  !important;

}

#gotocontact{
	color: inherit;
}
/*FOOTER-------------------*/
#thefooter {
	grid-area: footer;
	position:fixed;
	margin: 0px;
	height: var(--footer);
	background-color: white;
	z-index: 50;
	
}

#error404 {

	margin: 300px auto 300px auto;
}



