.profile-container{
	max-width: 900px;
	margin: auto;
	background-color:
	rgba(0, 255, 255, 0.25);
	margin-bottom: 15px;
	min-height: 400px;
	height: auto;
	overflow: auto;
}
.profile-left{
	margin: 10px;
	margin-bottom: 0;
	width: calc(100% - 20px);
	/*max-width: 545px;*/
	height: 400px;
}
.profile-text{
	width: 50%;
	display: inline-block;
	margin: auto;
}
.profile-main-info{
	margin-bottom: 10px;
}
.profile-name{
	font-size: 24pt;
}
.profile-subname{
	font-size: 12pt;
}
.profile-pronouns{
	font-size: 16pt;
}

.profile-roles{
	font-size: 20pt;
}
.profile-bullets{
	font-size: 16pt;
	padding-right: 10px;
}

.profile-right{
	float: right;
	display: inline-block;
	width: 50%;
	min-width: 218px;
	max-width: 335px;
	height: 100%;
}

.profile-picture-container{
	height: 335px;
}

.profile-picture-container img{
	image-rendering: pixelated;
	max-width:100%;
	max-height:100%;
	height: auto;
	width: calc(100%);
	margin: auto;
}
.profile-picture-gif{
	
}
.profile-socials-box{
	background-color: rgb(30,30,255);
	padding: 10px;
	margin-top: 10px;
	border-radius: 12px;
	width: auto;
	height: 35px;
	color: white;
}
.profile-socials-box .socials{
	text-align: center;
}

.guests-title{
	width: calc(100% - 40px);
	max-width: 900px;
	padding: 20px;
	margin: auto;
	background-color: rgba(0, 0, 0, 0);
	height: auto;
	overflow: auto;
	font-size: 16pt;
}
.guests-title h2{
	margin: 0;
	font-size: 36pt;
}
.guests-container{
	width: calc(100% - 40px);
	max-width: 900px;
	padding: 20px;
	margin: auto;
	background-color:
	rgba(0, 255, 255, 0.25);
	margin-bottom: 15px;
	height: auto;
	overflow: auto;
	align-items: center;
	justify-content: center;
	flex-direction: row | column;
	flex-wrap: wrap;
	
	display: flex;
}

.guest-container{
	display: block;
	text-align: center;
	width: 170px;
	margin: 3px;
	padding: 10px;
	padding-top: 0;
	
	font-size: 16pt;
	color: white;
	background-color: blue;
	border-radius: 10px;
}

.guest-picture img{
	image-rendering: pixelated;
	width: calc(100% - 20px);
	max-width: 150px;
	height: auto;
}

.guest-container .guest-name{
	margin: 7px;
}

/* when mobile */
@media (max-width:788px){
	.profile-bullets{
		font-size: 12pt;
	}
	.profile-text{
		width: 100%;
	}
	.profile-right{
		width: 220px;
		height: 275px;
		/*float: left;*/
		display: block;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 10px;
	}
	.profile-picture-container{
		width: 220px;
		height: 220px;
	}
	
	.guests-container{
		padding: 5px;
		width: calc(100% - 5px);
	}
	.guest-container{
		width: 113px;
		font-size: 10pt;
		margin: 3px;
	}
	.guest-name{
		font-size: 16pt;
	}
}