/* LinkedIn button */
.social-link {
	position: fixed;
	left: 50%;
	bottom: 24px;
	width: 30px;
	height: 30px;
	border-radius: 0;
	padding: 0;
	background: #0a66c2; /* LinkedIn blue */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/*transform: translateX(-50%); */
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(10, 102, 194, 0.25);
	transition:
		transform 120ms ease,
		box-shadow 120ms ease,
		opacity 120ms ease;
	opacity: 0.95;
}
.social-link:hover {
	/*transform: translateY(-4px);*/
	transform: rotate(20deg);
	box-shadow: 0 10px 24px rgba(10, 102, 194, 0.32);
	opacity: 1;
}

.social-link:active {
	transform: rotate(20deg);
	box-shadow: 0 10px 24px rgba(238, 127, 42, 0.32);
}

.linkedin-logo {
	color: #fff;
	font-weight: 700;
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 24px;
	line-height: 1;
	user-select: none;
}

@media (max-width: 600px) {
	.countdown {
		font-size: 14vw;
	}
	.label {
		font-size: 3.5vw;
	}
	.social-link {
		width: 42px;
		height: 42px;
		left: 50%;
		bottom: 16px;
		transform: translateX(-50%);
	}
}
