@charset "utf-8";
/* CSS Document */
footer {
	background-color: #000000;
	color: white;
	display:flex;
}
footer > div {
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
footer > div:first-of-type {
	align-items: flex-start;
	line-height: 2em;
}
footer > div:nth-of-type(2) {
	flex-grow: 1;
	flex-direction: row;
}
footer > div:nth-of-type(2) img{
	width: 40px;
	height: auto;
	margin-right: 15px;
	margin-left: 15px;
	transition: transform 1s linear 0s;
    transform-origin: left center;
}
footer > div:nth-of-type(2) img:hover {
	transform: scale(1.5);
}
footer > div:nth-of-type(3) {
	align-items: flex-end;
	line-height: 1.5em;
}


@media (max-width: 700px) {
	
	footer {
		flex-direction: column;
	}
	footer > div:first-of-type {
		align-items: center;
		order: 3;
	}
	footer > div:nth-of-type(2) {
		order: 2;
		margin-top: 1em;
		margin-bottom: 1em;
	}
	footer > div:last-of-type {
		align-items: center;
		order: 1;
	}
}