body {
	background: #ffffff;
	min-height: 96vh;
	display: flex;
	align-items: center;
	justify-content: center;	
}

.pulse {
		position: relative;
		background-color: #015b7e;
		width: 150px;
		height: 150px;
		border-radius: 50%;
}

.ring {
	position: absolute;
	background-color: inherit;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	opacity: 0.7;
	animation: pulsing 6s ease-out infinite;
}

.ring:nth-of-type(1) {
	animation-delay: -1s;
}

.ring:nth-of-type(2) {
	animation-delay: -2s;
}

.ring:nth-of-type(3) {
	animation-delay: -3s;
}

.ring:nth-of-type(4) {
	animation-delay: -4s;
}

.ring:nth-of-type(5) {
	animation-delay: -5s;
}


@keyframes pulsing {
	100% {
		transform: scale(2);
		opacity: 0;
	}
}