#resources {
	padding: 5rem 2rem;
}
.resource-nav {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 5rem;
}
.resource-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	background: #f9f9f9;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	width: 300px;
	transition: all 0.2s ease-in-out;
	padding: 1rem;
}
.resource-link h3 {
	margin: 0;
}
.resource-link:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.resource-link img {
	max-width: 200px;
}
@media (max-width: 992px) {
	#resources {
		padding: 4rem 2rem;
	}
	.resource-link {
		width: 200px;
	}
	.resource-link img {
		width: 100px;
	}
}
@media (max-width: 768px) {
	.resource-nav {
		flex-direction: column;
	}
	.resource-link {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		padding: 0 1rem;
		margin-bottom: 1rem;
	}
}
@media (max-width: 480px) {
	.resource-link img {
		width: 60px;
	}
	.resource-link {
		padding: 0 0.5rem;
	}
}
