<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 
   STYLING CODE FOR PROFILES PAGE
   Author: Michelle Cai
   Date Updated: 01.23.18
*/

.profile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 1em 0;
}
.profile .hex {
    margin: 0;
    padding: 0;
    min-width: 250px;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
}
.profile_desc {
    margin: 0;
    padding: 1em;
    width: 70%;
	font-size: 0.9em;
}
.profile_desc h3 {
    margin: 0.2em 0;
}
.profile_desc a {
    color: #5C3F02;
}
.hex&gt;img {
	width: 250px;
	height: 250px;
}
.name {
	font-size: 1.2em;
	margin: 0 0 0.5em 0;;
	padding: 0.5em 0;
	border-bottom: 1px solid #232323;
}
.fa {
	font-size: 0.9em;
}
.bio {
	padding: 1.5em 1.5em 0;
	border-top: 1px solid #232323;
}
ul {
	list-style: circle;
}
.return {
	margin: 3em 0;
	text-align: center;
}
.return p { padding: 0;}
.return a {
	display: inline-block;
	padding: 0 0.5em;
}

@media only screen and (max-width: 600px) {
	.profile {
		flex-direction: column;
	}
	.profile_desc {
		padding-top: 0;
		width: 100%;
	}
	.profile_desc .name {
		text-align: center;
	}
}

@media only screen and (max-width: 500px) {
	.bio {
		padding: 1em;
	}
.profile_desc {
    width: 100%;
}
}

/* STYLES FOR INTERNET EXPLORER 10 AND UP */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.hex {
		margin: 0 1em;
	}
}</pre></body></html>