.feature-box-wrapper{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:100%;
}

.feature-box{
	width:70%;
	max-width:300px;
	cursor:pointer;
}

.feature-card{
	border-radius:10px;
	padding:1rem;
	border:1px var(--text-color) solid;
	display:flex;
	flex-direction:column;
	align-items:center;
	text-decoration:none;
	margin-top:1.8rem;
	cursor:pointer;
	cursor:var(--cursor-clickable);
}

.feature-card > .artwork-img{
	width:100%;
}

.feature-card > .link-title{
	width:100%;
	text-align:center;
	font-size:1.5rem;
	color:var(--text-color);
	text-decoration:none;
	height:100%;
}

.feature-card > .link-title > p{
	width:100%;
	text-align:center;
}

.feature-card > .artwork-img > img{
	width:100%;
	height:100%;
	border-radius:10px;
}


.link-box-wrapper{
	display:flex;
	flex-direction:row;
	justify-content:center;
	width:100%;
}

.link-box{
	width:90%;
	max-width:600px;
}

.link-card{
	border-radius:10px;
	padding:0.3rem;
	border:1px var(--text-color) solid;
	display:grid;
	grid-template-columns: 3.5rem 1fr;
	text-decoration:none;
	margin-top:1.8rem;
	cursor:var(--cursor-clickable);
}

.link-img{
	padding:0.5rem;
	height:60px;
}

.link-img svg{
	width:3.5rem;
	height:3.5rem;
	stroke: var(--text-color);
}

.link-card > .link-title{
	font-size:1.5rem;
	color:var(--text-color);
	text-decoration:none;
	height:100%;
	display:flex;
	align-items:center;
	padding-left:40px;
}

.link-card > .link-title p{
	margin:0;
	letter-spacing:3px;
}