@charset "UTF-8";

#link .flex,
#link ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

#link .flex {
	margin-bottom: 20px;
}

#link h4 {
	min-width: 125px;
	text-align: center;
	box-sizing: border-box;
}

#link h4,
#link a {
	background: var(--i_main_color);
	border-radius: 10px;
	color: var(--i_bg_color);
	display: inline-block;
	padding: 0 20px;
	transition: .4s ease-in-out;
}

#link>div:last-of-type h4,
#link>div:last-of-type a {
	background: #329824;
}

#link a:hover {
	opacity: 0.7;
}

#link>h4 {
	background: #f68f09;
	padding: 0;
}

#link h4 a {
	background: transparent;
}

#link ul li {
	list-style-type: none;
	padding-left: 0;
}