root.scss 514 Bytes
body {
  font-family: Helvetica, sans-serif;
	background: #eee;
  -webkit-font-smoothing: antialiased;
}

h1, h3 { font-weight: 300; }

h1 { color: #636363; }
hgroup {
	text-align:center;
	margin-top: 4em;
}
// Divs
.container {
  display: grid;
  grid-template-rows: 10vh auto;
  grid-template-columns: auto auto auto;
}

.navbar {
  grid-row: 1;
  grid-columns: 1/4;
}

.content {
  grid-row: 2;
  justify-self: center;
}

.left {
  grid-column: 1;
}

.center {
  grid-column: 2;
}

.right {
  grid-column: 3;
}