#flex{
	display: flex;
	position: relative;
	flex-direction: column;
	height: auto;
	justify-content: center;
	align-items: center;
	text-align: left;

	top: 16vh;
	margin-bottom: 5vh;
}

#flex section{
	position: relative;
	top: 20%;
	display: block;
	margin-bottom: 5vh;
	overflow: hidden;

	width: 50vw;
	max-width: 20cm;
	height: auto;
	min-height: 4cm;
	border: solid;	
	border-width: 4pt;
	background-color: white;
	padding: 0 2ex 1.5ex 2ex;

	transition: padding 0.2s;
}
#flex section:hover{
	padding: 0 3ex 1.5ex 3ex;
}


@media (orientation: portrait) {
	#flex{
		top: 12vh;
	}
	#flex section {
		width: 80%;
	}	
}


#flex section h2{
	z-index: 2; 
	background-color: white;
	padding: 0.5ex;
	border-bottom: dashed;
	border-width: 4pt;
}

time{
	position: absolute;
	right: 2ex;
	top: 1ex;
	transition: right 0.2s;
}
#flex section:hover time{
	right: 3ex;
}

#flex section p{
	padding: 1ex;
	display: block;
	overflow: hidden;
}

#flex section a{	
	color: blue;
}

#flex section img{
	height: 4ex;
	padding: 2ex;
}


#icon{
	height: 7ex;
}