
body {
  font-family: Helvetica, Arial, sans-serif;
  margin: 0 auto;
  max-width: 56em;
  padding: 1em 0;
}
.grid {
    display: grid;
    grid-template-columns: 150px auto 150px;
    grid-template-rows: repeat(3, 100px);
    grid-gap: 1em;
}
.grid > header,
footer {
  /*background: #eaeaea;*/
  padding: 1em;
}
header, footer {
  grid-column: 1 / 4;
}

.grid > * {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy{
  font-size: 0.6em;
}