.mainTextContainer {
	margin: 0 auto;
	border: 0px solid black;
	width: 100%;
	display: flex;
  flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;      /*--moves flex items to middle of container*/
}
    .inner {
      width: 90vw;
      border: 0px solid black;
    	margin: 0 auto;
    	display: flex;
      flex-direction: column;
    	flex-wrap: nowrap;
    	align-items: center;
    }
        .peep {
          width: 85vw;
					min-width: 750px;
					max-width: 1000px;
        	margin: 0 auto;
        	display: flex;
          flex-direction: row;
        	flex-wrap: nowrap;
        	align-items: center;
					justify-content: center;
        }
		      .portrait{
						width: 24vw;
						min-width: 200px;
						max-width: 400px;
		        border-radius: 50%;
		        margin: 0 auto;
		      }
            .content{
              width: 30vw;
            	margin: 0 auto;
            	display: flex;
              flex-direction: column;
            	flex-wrap: nowrap;
            	align-items: center;
            }
                .nameTitle{
                  margin: 0 auto;
                }
                .biography{
                  width: 100%;
                	margin: 0 auto;
                	display: flex;
                  flex-direction: column;

                	align-items: center;
                }
                      .peepDescription{
                        font-size: 20px;
                        width: 500px;
												font-weight: 100;
                      }

                      .linkHolder{
                        width: 100%;
                        display: flex;
                        justify-content: center;
                      }
                          .fa {
                            padding: 10px;
                            text-align: center;
                            text-decoration: none;
                            border-radius: 50%;
                            -webkit-backface-visibility: hidden;
                            backface-visibility: hidden;
                            -webkit-transition: all 120ms ease;
                            margin: 5px;
                            background: black;
                            color: white;
                          }
                              .fa:hover,.fa:visited {
                                  text-decoration: none;
                                  opacity: 0.7;
                                  color: white;
                              }
p{
	text-indent: 50px;
}
