/* Turn the grid container into a grid with three flexible columns.
Style the individual items to recreate the screenshots on class website.*/

.grid-container {
  display: grid;
  width: 546px;
  border: solid white 5px;
  font-family: "impact";
  background: Firebrick;
  background-image: url(http://robison.fsartanddesign.org/fall2019/GD50/imgs/amtoj-typespec.png);
  background-size: 100%;
  background-position:center bottom;
  
}

.one {
  grid-column: 1 / span 3;
  grid-row: 1 / span 1;
  font-size: 180px;
  margin-bottom: 5px;
  }
.capitals {
  grid-column: 1 / span 1;
  grid-row: 2 / span 3;
  word-spacing: 10px;
  padding-left: 55px;
}
.lowercase {
  grid-column: 3 / span 1;
  grid-row: 2 / span 3;
  padding-right: 36px;
  word-spacing: 10px;
}

.text {
  margin-top: 25px;
  margin-bottom: 6px;
  margin-right: 25px;
  text-align: center;

  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
  line-height: 1.8;
}
.numbers {
  grid-column: 2 / span 1;
  grid-row: 2 / span 2;
  word-spacing: 18px;
  margin-left: 20px;
  }



.characters {
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
  word-spacing: 17px;
  line-height: 2;
  margin-left: 10px;
}

.four {
  grid-column: 1 / span 3;
  grid-row: 5 / span 1;
  font-size: 180px;
}

.grid-container div 
{
  color: white;
  
}
