#ageclock{

	font-family: 'Share Tech Mono', sans-serif;
}

#ageclock h3{
	color: #e4faf8;
	font-size: 3em;
}

#ageclock h4{
	color: #90f4a5;
}

#clock{
	 background: #0f3854;
    background: radial-gradient(ellipse at center,  #0a2e38  0%, #000 70%);
    background-size: 100%;
    position: relative;
    height: 100px;
    margin:20px 0px;
}
.wrapper {
  font-family: 'Share Tech Mono', monospace;
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #daf6ff;
    text-shadow: 0 0 20px rgba(10, 175, 230, 1),  0 0 20px rgba(10, 175, 230, 0);
}

#timeP {
        letter-spacing: 0.01em;
        font-size: 4em;
        padding: 5px 0;
}

#details{
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;  
    padding: 20px 0; 
}

#details div{
	float: left;
	padding-right: 10px;
}

#details div label{
	display: block;
	float: left;
	color: #fefefe;
	height: 23px;
	font-size: 18px;
	border: 1px solid #e4faf8;
	padding: 5px;
	border-radius: 5px 0px 0px 5px;
}

#details div input{
	width: 40px;
	height: 25px;
	display: block;
	padding: 5px;
	text-align: center;
	border: none;
	font-size: 18px;
	border-radius: 0px 5px 5px 0px;
	background-color: #e4faf8;
}

#details button {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px;
  background: #021a07;
  color: #fff;
  border: solid 1px #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2em;
  padding: 12px 15px;
  display: block;
  margin: 10px;
  outline: none;
}
#details button:hover {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: rgba(0,0,0,0);
  border: solid 1px #06af26;
  color: #fdfdfd;
}

@media only screen and (max-width:900px) {

	#details{
		display: block;
	}

	#details div{
	float: none;
	padding: 5px 5%;
	width: 90%;
	clear: both;
	display: flex;
	justify-content: center;
    align-items: center;  
	}

	#details button {

		width: 150px;
		text-align: center;
		margin: 10px auto;
	}

}