.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	line-height: 1;
	list-style: none;
}

.social-links a {
	color: var(--deep-blue);
	text-decoration: none;
	font-size: var(--text-lg);
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	background-color: var(--white);
	border-radius: var(--rounded-full);
	transition: background-color var(--spring-transition-appendix);
}
	
@media (hover: hover) {
	.social-links a:hover {
		background-color: rgba(255, 255, 255, 0.8);

	}
}


.social-links .social-network {
	padding: 0;
	margin: 0;
}

@media (min-width: 64em) {
	.social-links a {
		width: 50px;
		height: 50px;
	}
}

