* {
margin: 0;
padding: 0;
}

body {
	max-width: 1280px;
	margin:auto;
	}

dd:last-child {
	border-bottom-style: solid;
	border-width: 1px;
	border-color: grey;
	}

.fixed {
    position: fixed;
	}
	
.item1 { 
	grid-area: header; 
	width:1080px;
	}
.item1 h1 {
	font-size:50px;
	color:red;
	}
	
.item2 { 
	grid-area: nav;
	width: 950px;
	}
	
.item3 { 
	grid-area: search;
	}

.item3	input[type=text] {
		width: 130px;
		box-sizing: border-box;
		border: 2px solid #ccc;
		border-radius: 4px;
		font-size: 16px;
		background-color: white;
		background-image: url("searchicon.png");
		background-position: 10px 10px; 
		background-repeat: no-repeat;
		padding: 12px 20px 12px 40px;
		-webkit-transition: width 0.4s ease-in-out;
		transition: width 0.4s ease-in-out;
	}

.item3	input[type=text]:focus {
		width: 100%;
	}

.item4 { 
	grid-area: logo;
	width: 200px;
	}
.item4 img {
	width: 200px;
	}
	
.item5 { grid-area: main;
display: block;
height: 300px;
		margin-bottom: 15px;
	}
.item6 { grid-area: footer;
	display: none;
	position: sticky;
	bottom: 10px;
	}

.grid-container, .sticky {
	display: grid;
	grid-template-areas:
		'logo header header header'
		'logo nav nav search'
		'main main main main'
		'footer footer footer footer';
	grid-gap: 1px;
}

.grid-container > div, .sticky > div {
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-size: 30px;
}

#css-grid-table {
	padding: 3%;
	display: table;
	width: 100%;
	text-align: left;
}

#css-grid-table dl {
	margin-top: 0px;
	margin-bottom:10px;
	float: left;
/*	margin-right: 10px;*/
}

#css-grid-table dl:last-child {
	margin-bottom:1px;
}

#css-grid-table dt {
/*	background: #000;
	color: #fff;
	font-family: Gill Sans, sans-serif;
	text-transform: lowercase;
	font-size: 4rem; 
	text-indent: 1rem;
	font-weight: 100; */
	font-weight: bold;
	vertical-align: middle;
}

#css-grid-table dd {
/*	padding: 1rem;
	padding-top: 3rem;
	font-family: Arno Pro, sans-serif; */
	font-style: italic;
	width:1170px;
/*	border-bottom-style: solid;
	border-width: 1px;
	border-color: grey; */
	margin-left: 200px;
margin-right: 50px;
}

#css-grid-table dd p { 
	margin-top: 3rem;
}

#top_arrow {
	width: 40px;
	height:auto;
	position: fixed;
	bottom: 0;
	right: 0;
}

hr {
border: 1px solid #f4f4f4;
margin-right: 500px;
width: 80%;
margin-left: 100px;
}