.column {
    float: left;
    max-height: 350px;
}

.left {
    padding-right: 2.5%;
    width: 25%;
}

.right {
    width: 45%;    
    padding-left: 2.5%;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.headshot {
    height: 350px;
    display: block;
    margin: auto;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
	width: 100%;
    }
}
