body {
	margin: auto;
	padding: 12px;
	color: black;
	font-family: 'Noto Sans', sans-serif;
}

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

.wrapper {
	display: grid;
	grid-template-columns: 300px 2fr 1fr 0fr;
	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;
}

/* Area colouring... */


/* logo, banner and footer background are the same */
.logo, .side {
	background-color: #00AC9F; /* Persian Green */
}

/*set font on dark areas to white */
.main {
	color: #fff;
}
	
.logo {
	grid-area: logo;
	padding: 0;
	height: 203px;
}

.banner {
	background-color: #2E6DB4; /* Celtic Blue */
	grid-area: banner;
}

.nav {
	grid-area: nav;
	background-color: #2E6DB4; /* Celtic Blue */
	font-size: 25px;
	text-align: center;
	border-radius: 10px;
}

.main {
	grid-area: main;
	background-color: #DF0024; /* Cadmium Red */
	border-radius: 10px;
}

.side {
	
	grid-area: side;
	border-radius: 10px;
}

.footer {
	background-color: #F3C300; /* Golden Poppy */
	grid-area: footer;
	text-align: right;
}
/* -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: #00AC9F;
    text-decoration: none;
}

.nav a.active {
	color: #00AC9F;
}

/* links in side bar */

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

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

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

.center_image {
	text-align: center;
}

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

.playstation_start_up {
	max-width: 100%;
}



@media screen and (min-width: 769px) {
  div.banner h1 {
  }
}

@media screen and (max-width: 768px) {
  div.banner h1 {
    font-size: 20px;
  }
}
