*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
	background-color: #232323;
}

.title h1 {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	font-size: 2rem;
	font-weight: 400;
	line-height: 0.625rem;
	letter-spacing: 0.2rem;
	padding: 150px 0px 50px 0px;
	margin: 0px;
	color: #00FF0C; 
 	text-shadow: black 0.1em 0.1em 0.2em;
}
/*@media screen and (max-width: 450px) {
	.ttile h1 {
		display: flex;
		justify-content: center;
		padding: 100px 0px 100px 0px;
		margin: 0px;
	}
}*/
.conteiner {
 position: relative;
}
.circle {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	border: 1px solid #fff;
	color: #00FF0C;
	margin: 50px auto;
}
.circle::before {
	content: '';
	border-radius: 50%;
	z-index: -1;
	position: absolute;
	width: 160px;
	height: 160px;
	left: calc(50% - 80px);
	top: calc(50% - 80px);
	background-color: #1d1d1d;
	box-shadow: -5px -5px 10px -4px rgba(255, 255, 255, 0.05),
               5px 5px 15px rgba(0, 0, 0, 0.5);
}
.seconds-sphere { /* bolita */
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #00FF0C;
	position: absolute;
	left: calc(50% - 10px);
	top: calc(50% - 10px);
	animation: rotacion 60s linear infinite;
	animation-play-state: paused;
}
@keyframes rotacion {
	from { transform: rotate(-90deg) translateX(60px); }
	to { transform: rotate(270deg) translateX(60px); }
}
.button {
	margin-top: 10px;
	display: inline-flex;
}
.paused {
	height: 10px;
	border-width: 5px 0 5px 10px;
	cursor: pointer;
	box-sizing: border-box;
	/*margin-left: 15px;*/
	margin: -10px 0px 0px 25px;
	border-color: transparent transparent transparent #fff;
	transition: 100ms all ease;
	will-change: border-width;
	border-style: solid;
}
.running {
	border-style: double;
	border-width: 0px 0px 0px 10px;
}
.stop {
	background-color: #fff;
	height: 10px;
	width: 10px;
	cursor: pointer;
}