.item5 {
    grid-area: article;
    color:rgb(255, 255, 255);
    text-align: left;
    padding-right: 18%;
    
}

.container2{ /*changing this from . to # puts the second box underneath the first box */
    display:flex;
    justify-content: center;
}
.container3{ 
    display:flex;
    justify-content: center;
}


.wrapper { /*puts things into columns*/
  display: inline-grid;
  grid-template-columns: 33% 33% 33%;
  margin-right: 10%;
  border: 1px solid rgb(255, 231, 16);
  grid-gap: 1px;
  background-color: 51, 49, 49;
  padding: 1px;
  
}

.wrapper > div { /* controls background color/highlight */
  background-color: rgb(51, 49, 49);
  padding: 0%;
  text-align: left;
}
/*change hyperlink color attribute*/
a:link{
    color: rgb(255, 231, 16);
}
a:visited{
    color: rgba(255, 231, 16, 0.644);
}
a:hover{
    color: rgb(253, 243, 152);
}
a:active{
    color: rgb(255, 231, 16);
}