@import url('fontawesome-all.min.css');
@import url('main.css');
@import url('noscript.css');

.user_container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: stretch;
}

.user_box_container {
	position: relative;
	text-align: center;
	color: white;
}

.user_box_container img {
	width: 100%;
	height: 350px;
}

.user_box {
	display: block;
	margin: 20px 0;
	cursor: pointer;
	width: 30%;
	height: 30%;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: auto;
	align-self: auto;
	transition: 0.5s ease-in;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	order: 0;
}
.user_text {
	color: black;
	border: 1px solid white;
	border-radius: 4px;
	padding: 10px;
	background-color: rgba(255,255,255,0.8);
}

.user_box:hover {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.clear {
	clear: both;
}