body {
	box-sizing: border-box;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
    background: #999;
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 55, 101, 0.4);
	}
	100% {
		box-shadow: 0 0 0 32px rgba(0, 55, 101, 0);
	}
}

.pulse-badge {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: #003765;
	animation: pulse 2s infinite;
}
