/*
Allison Obourn
CSC 337, Fall 2018
Lecture 5

Styles for the 6 black box page.
Displays boxes in two rows of three.
*/

#outer {
  border: 2px dashed black;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 360px;
}

.box {
  width: 100px;
  height: 100px;
  background-color: black;
  margin: 10px;
}

body {
	margin: auto;
}