/*** Articles (home) ***/



.article_flex {
	display: flex;
	flex-direction: column;

	margin: 0px 10px;
	min-width: 200px;
	
	text-align: justify;

	border-left: 10px solid var(--violetred);
	transition: box-shadow 0.2s, background-color 0.2s;
}
.article_flex:hover {
	background-color: var(--seashell_light);
	box-shadow: rgba(0, 0, 0, 0.6) 0px 10px 25px -5px;
}
.article_flex h2 {
	text-align: center;
}

.article_flex_logo {
	display: block;

	margin: 10px auto 0px auto;
	height: 150px;
}

ul li{
	margin: 5px 0px;
}
