/**
*
* @package phpBB Extension - Board Magic
* @copyright (c) 2024 SpIdErPiGgY - https://www.phpbbnextl.be
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/** FA Iconen */
.fa-heart {
	color: #ef4444;
	animation: heartbeat 2s ease-in-out infinite;
	display: inline-block;
	transform-origin: center;
	filter: drop-shadow(0 0 6px rgba(239,68,68,.35));
}

@keyframes heartbeat {
	0%, 100% {
		transform: scale(1);
	}

	15% {
		transform: scale(1.12);
	}

	30% {
		transform: scale(1);
	}

	45% {
		transform: scale(1.08);
	}

	60% {
		transform: scale(1);
	}
}

.fa-book {
	color: #facc15;
	filter: drop-shadow(0 0 6px rgba(250,204,21,.35));
	transition: all .25s ease;
}

.fa-book:hover {
	color: #fde047;
	transform: scale(1.1);
	filter: drop-shadow(0 0 10px rgba(250,204,21,.7));
}

/** Header Banner Extensie */
.headerbar .header-banner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1px !important;
	max-width: 100%;
}