html,body {
	width:98%;
	height:98%;
}

#content {
  display: grid;

  grid-template-areas: "topbar topbar"
  						"sidebar tid";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

#topbar {
	grid-area: topbar;
	border:2px solid red;
	height:10vh;
	width:98vw;
}

#sidebar {
	grid-area: sidebar;
	border:2px solid blue;
	width:10vw;
	height:85vh;

}

#tid {
	grid-area: tid;
	border:2px solid green;
	width:88vw;
	height:85vh;
}










