body {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-areas: 
	"header header header header header header header header header header header header"
	"boop boop boop boop idbar idbar idbar idbar content content content content"
	"funny you looked here hi footer footer footer footer footer footer footer";
}
header {
	grid-area: header;
	height: 50px;
}
idbar {
	grid-area: idbar;
}
navbar {
	grid-area: navbar;
}
content {
	grid-area: content;
}
footer {
	grid-area: footer;
}
space1 {
	grid-area: space1;
}
space2 {
	grid-area: space2;
}