* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-weight: 300;
	background: linear-gradient(to left, #607d8b, #d459cb);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.timeContainer {
	display: inline-block;
	min-width: 360px;
	min-height: 400px;
	padding: 50px 15px;
	background-color: #fff;
	box-shadow: 0 5px 25px #0000004a;
	border-radius: 8px;
	text-align: center;
}
.displayTime {
	position: relative;
	width: 250px;
	height: 250px;
	line-height: 250px;
	border-radius: 50%;
	font-size: 32px;
	margin: 0 auto;
	background-color: #fff;
}
p {
	font-weight: 400;
	color: red;
	padding: 30px 0;
}
svg {
	width: 260px;
	height: 260px;
}
/* circle animation */
.displayTime svg {
	position: absolute;
	left: 0;
}
.spanDiv {
	display: flex;
	justify-content: center;
	align-items: center;
}
.spanDiv span {
	width: 30px;
	margin: 0 10px;
}
.defaultCircle {
	opacity: 0.3;
}
#animateCircle.addAnimation {
	stroke-dasharray: 770;
	stroke-dashoffset: -770;

	animation: animateCircle 60s linear infinite;
	animation-play-state: paused;
}
@keyframes animateCircle {
	from {
		stroke-dashoffset: 0;
	}
}
.option {
	margin-top: 30px;
}
button {
	border: none;
}
.option button i {
	color: white;
	display: inline-block;
	margin: 0 10px;
}

.fa-play,
.fa-pause,
.fa-power-off {
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(45deg, #ff88fb, #ff00ec);
	box-shadow: 0 8px 25px #bf5fc045, 0 8px 25px #ff00ec50;
	transition: all ease 0.1s;
}

.fa-play:active,
.fa-pause:active,
.fa-power-off:active {
	transform: scale(0.95);
}

.fa-pause .fa {
	margin-right: 5px;
}
.fa-play {
	padding-left: 5px;
}
