#main-flexbox {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: start;
}

.content-contain {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	margin-left: 60px;
	z-index: 7;
}

.content-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;		
}

.content-list-item {
	height: fit-content;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: start;
}

.content-text {
	color: #888;
}

.journal-club-img-contain {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 640px;
	height: 22vh;
}

.lte-cme-img-contain {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 28vh;
}

.logo-img {
	height: fit-content;
	width: fit-content;
	filter: drop-shadow(#e0e0e0 3px 3px 5px);
}

@media (max-width: 1000px) {
	#main-flexbox {
		flex-direction: column-reverse;
	}

	.content-contain {
		width: 100%;
	}
}