/*
 * (c) LEONEST.ART 5/27/2023
 */

::-moz-selection {
	color: #d03d3c;
	background: none;
}

::selection {
	color: #d03d3c;
	background: none;
}

a:focus, a:active, a:hover {
	color: #d03d3c;
}

.download button {
	margin-top: 20px;
	min-width: 300px;
}

.pulse-label {
	position: relative;
	display: inline-block;
}

.pulse-label:after {
	content: attr(data-label);
	position: absolute;
	left: 50%;
	bottom: 15%;
	transform: rotate(-20deg);
	text-shadow: 2px 2px 8px #000;
	font-size: 2rem;
	font-weight: bold;
	animation-name: pulse;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes pulse {
	0% { transform: rotate(-20deg) scale(1.2,1.2); }
	50% { transform: rotate(-20deg) scale(1,1); }
	100% { transform: rotate(-20deg) scale(1.2,1.2); }
}
