body{
	margin:0;
	padding:0;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	line-height: 1.5em;
}
#site_wrap{
	/*background-color: whitesmoke;*/
	height:100%;
	display:grid;
	background-image: linear-gradient(to bottom right, #F24C27, #EBC8C0);
	grid-template-columns: 
		1fr
		repeat(4,minmax(0,272px))
		1fr
	;
	grid-gap: 0px;
	grid-template-rows: 
		200px
		98px
		468px
		468px
		155px
		;
	grid-template-areas: 
		". header header header header ."
		". featured_header featured_header featured_header featured_header ."
		". gallery about booking pricing ."
		". contact main main main ."
		". image_dog image_space image_runner image_owl ."
		
}
.header{
	/*background-color: #ED9D8A;*/
	grid-area:header;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	color: #434343;
	font-size: 44px;
	font-weight: bold;
}
.header .logo{
	width: 191px
}
.header .logo{
	width: 191px
}
.featured_header{
	/*background-color: #ED9D8A;*/
	grid-area:featured_header;
}
.text_padding{
	padding-top: 32px;
}
.box{
	position: relative;
	font-size: 32px;
	text-align: center;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	line-height: 50px;
}
.gallery{
	background-color: #8CD6DE;
	grid-area:gallery;
	margin: 8px 8px 8px 0px;
	color: #707070;
}
.button{
	border-radius: 37px;
	width: 176px;
	background-color: white;
	color: #8CD6DE;
	font-size: 24px;
	word-wrap: normal;
	bottom: 15px;
	right:40px;
	align-self: flex-end;
	position: absolute;
}
.about{
	background-color: #2C785D;
	grid-area: about;
	margin: 8px;
	color: white;
}
.booking{
	background-color: #FFC13B;
	grid-area:booking;
	margin: 8px;
	color: #707070;
}
.pricing{
	background-color: #B54A26;
	grid-area:pricing;
	margin: 8px 0px 8px 8px;
	color: white;
}
.contact{
	background-color: #7D1F00;
	grid-area:contact;
	margin: 0px 8px 8px 0px;
	color: white;
}
.main{
	grid-area:main;
	margin: 0px 0px 8px 8px;
}
.main h2{
	font-size: 48px;
	text-align: center;
	color: #434343;
	
}
.main p{
	color: #434343;
	font-size: 18px;
}
.image_dog{
	grid-area:image_dog;
	margin: 8px 8px 8px 0px;
}
.image_dog .dog{
	width: 260px;
}
.image_space{
	grid-area:image_space;
	margin: 8px;
}
.image_space .space{
	width: 260px;
}
.image_runner{
	grid-area:image_runner;
	margin: 8px 8px 8px 0px;
}
.image_runner .runner{
	width: 260px;
}
.image_owl{
	grid-area:image_owl;
	margin: 8px;
}
.image_owl .owl{
	width: 260px;
}

@media screen and (max-width:480px){
	#site_wrap{
	grid-template-areas: 
		". header header header header ."
		". featured_header featured_header featured_header featured_header ."
		"gallery gallery gallery about about about"
		"booking booking booking pricing pricing pricing"
		". contact contact contact contact ."
}
	featured-profile{
		display:none;
	}
	}