/* Container holding the image and the text */

.image-container {
    position: relative;
    overflow: hidden;
    height: 300px; /* Adjust the height as needed */
}

.cropped-img {
    width: 100%;
    height: 100%; /* Use full height of the container */
    object-fit: cover;
    object-position: center;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	text-transform:uppercase;
    color: white;
    font-size: 3em; /* Adjust font size for mobile */
}
.card-header{
	text-align:center;
	font-size:25px;
}
.card-body{
	text-align:center;
}
.member-name{
	font-weight:bold;
	font-style:italic;
	margin-bottom:0px;
	margin-top:20px;
}
.member-photo{
	height:200px;
	width:200px;
	border-radius:50%;
	border:2px solid #E4C57E;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
}
.member-photo img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.contact{
	border:1px solid #E4C57E;
}