@charset "utf-8";
/* CSS Document */
/* COLOURS AND FONTS */
/* #7B297F; /* EI Dark Purple */
/* #BB64BF; /* EI Purple */
/* #464646; /* EI Grey */
/* #000000; /* Black */
/* #FBFEF9; /* Baby Powder */
/* #E30022; /* Cadmium Red */

/* Global Styles */

body {
	text-align: center;
}


.biography {
	width: 80%;
	margin: 0 auto;
}

.bio-box {
    position: relative;
    display: inline-block;
	vertical-align: top;
	height: 325px;
	width: 250px;
	text-align: center;
	padding: 20px;
	max-width: 200px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile-image {
    border-radius: 50%;
    cursor: pointer;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile-name {
    margin-top: 10px;
}

.profile-title {
    font-size: 14px;
    color: #666;
    margin-top: 0;
	word-wrap: break-word;
}

.bio-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.bio-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .bio-content {
        width: 90%;
    }
}

