/*Pulzáslás*/

.start-btn{
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(204, 204, 204, 0.7);
	}

	70% {
		transform: scale(1.3);
		box-shadow: 0 0 0 10px rgba(204, 204, 204, 0);
	}

	100% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(204, 204, 204, 0);
	}
}

.start-btn a:hover{
    text-decoration: none;
}
