body {
	margin: auto;
	padding: 45px;
	color: black;
	font-family: 'Noto Sans', sans-serif;
	background: linear-gradient(90deg, #ffc5d9, #ee6078);
	height: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* ---- Set up site grid ---- */

.wrapper {
	display: grid;
	grid-template-columns: 302px 2fr 1fr 160px;
	grid-template-rows: auto;
	grid-template-areas:
		"logo banner banner banner"
		"nav nav nav nav"
		"main main main side"
		"footer footer footer footer";
	grid-gap: 4px;
}		

/* ---- End of grid setup ---- */

/* -000- Area styling -000- */

.box {
	border: solid 1px #000; 
	padding: 20px;
	background-color: #ddd;
	border-radius: 10px;
}

/* Area colouring... */


/* logo and side background colour are the same */
.logo, .side {
	background-color: #ffc5d9; /* ice cream pink */
}

/*set font on light areas to dark */
.main {
	color: #000;
	padding-bottom: 0px;
}
	
.logo {
	grid-area: logo;
	padding: 0;
	height: 200px;
}

.banner {
	background-color: #6b3e26; /* ice cream brown */
	grid-area: banner;
}
			
.nav {
	grid-area: nav;
	background-color: #6b3e26; /* ice cream brown */
	font-size: 28px;
	text-align: center;
	padding: 15px
}

.main {
	grid-area: main;
	background-color: #ffeeb5; /* vanila ice cream colour */ 
	font-size: 18px;
}

.side {
	grid-area: side;
	font-size: 18px;
	padding: 12px;
}

.footer {
	background-color: #6b3e26; /* ice cream brown */
	grid-area: footer;
	color: #fff;
	position: relative;
	padding: 15px;
}
/* -000- Area styling -000- */


h1, h2, h3 ,h4 {
	font-family: 'Orbitron', sans-serif;
}

/* Navigation Links */
.nav a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}

	
.nav a:hover {
	color: 	#ffeeb5;
    text-decoration: none;
}

.nav a.active {
	color: #ffeeb5;
}

/* links in side bar */

.side a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}

	
.side a:hover {
	color: #fff;
    text-decoration: none;
}

.icecreamscoops {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.8);
}

.center_image {
	text-align: center;
}

/* Contact Form Styling */
.contact {
	width: 100%;
}

.icecreamstack {
	max-width: 50%;
}

h1 {
	font-size: 5em;
	color: white;
}

.icecreamcone {
	border-radius: 10px;
}

.cc{
	width: 160px;
	height: 56px;
	font-size: 14px;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	white-space: nowrap;
    overflow: hidden;
	right: 15px;
}


/* navigation styling */

.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
	
.nav li {
	display: inline-block;
	margin-left: 20px;
	
}

hr {
	border-color: black;
	border-bottom-width: 3px;
	padding-left: 20px;
	padding-right: 20px
}

.banner {
	position: relative;
}

.banner h1 {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	white-space: nowrap;
    overflow: hidden;
}

.main a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}

	
.main a:hover {
	color: #6b3e26;
    text-decoration: none;
}