/* Defines the width of a team member's column on the About page
	Currently set up to have 4 members side by side (so 25% of page width each) per row. 
	*/
.teamcolumn {
    float: left;
    width: 25%; /* Change this value if you want a different number of members per row (33% for 3 members, 50% for 2, etc.). */
    margin-bottom: 16px;
    padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media (max-width: 650px) {
    .teamcolumn {
        width: 100%;
        display: block;
    }
}

/* This is CSS code for styling a banner image of the entire team together (if a photo is ever taken of that) */
.teambanner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 800pt;
}

/* Ensures images inside the team banner scale up to the full width, and have rounded corners. */
.teambanner img {
	width: 100%;
	border-radius: 5pt;
}

/* Add some shadows to create a nice card effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	border-radius: 5pt;
}

/* Ensures images within the card scale up to the full width. */
.card img {
	width: 100%;
}

/* Some left and right padding inside the container, so text doesn't run right up to the borders.  */
.teammember {
    padding: 0 16px;
}

/* Clear floats */
.teammember::after, .row::after {
    content: "";
    clear: both;
    display: table;
}

/* Styles the text for the employee title */
.teamtitle {
    color: grey;
}

/* Unused button, for if you want contact forms made up for each team member, that can be accessed with this button */
.teambutton {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.teambutton:hover {
    background-color: #555;
}