Please give as much feedback as you think is necessary. thanks!

Nubia Tribute

In particular, I need help making the content wells the same size. I cannot figure out how to make them all equal sized and in the same horizontal plane.

Hi @iselee I like what you have here so far! To make your wells in the col-xs-4 class all the same height you can either add a height property and specify the same height for each individual well, or you can use a child selector (>) to select all of the wells belonging to the class col-xs-4 to size them all equally.
.col-xs-4>.well{
height: 500px;
}

I hope that helps.