body {
	background-color: #ffffff;
	color: #334155;
}

.reveal-hidden {
	display: none !important;
	opacity: 0;
	transform: translateY(30px);
}
.reveal-visible {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-instant {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.img-float {
	animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.btn-pulse {
	animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
	0% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
	}
}
