body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  background-color: grey;
  font-family: arial, helvetica, sans-serif;
}

/* .BackBtn { */
	/* padding: 0;  */
	/* background: none; */
	/* outline: none; */
	/* border: none;  */
	/* text-decoration:none; */
/* } */

.sidebar {
	grid-area: sidebar;
	background: grey;
	text-decoration: none;
	padding: 5px;
	
}

.content {
	grid-area: content;
	background: grey;
}

.header {
	grid-area: header;
	background: grey;
	padding: 5px;
}
/*
.footer {
	grid-area: footer;
	background: grey;
	padding: 500px;
} */


.wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 2fr 1fr 2fr;
	grid-template-areas:
	"header header header"
	"sidebar content content"
	"sidebar content content";
	background-color: grey;
	color: white;
	padding: 15px;
}


.box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 150%;
}

.footer {
  background-color: #999;
  position: fixed;
}