


#clock-container {
  width: 150px;
  
  margin-right:25px;
}

#clock {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
}

.default-rotation {
  transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transform: rotate(0);
}

.hand {
  width: 100%;
  height: 50%;
}

#hour-container {
  width: 9%;
  height: 50%;
  margin-left: -4.5%;
  margin-top: -25%;
}

#minute-container {
  width: 9%;
  height: 70%;
  margin-left: -4.5%;
  margin-top: -35%;
}

#second-container {
  width: 2%;
  height: 85%;
  margin-left: -1%;
  margin-top: -42.5%;
}

#hour-container .hand,
#minute-container .hand {
  background-color: #fff;
  -moz-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
}

#second-container .hand {
  background-color: #222;
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}

#second-base {
  width: 300%;
  height: 7%;
  margin-left: -100%;
  margin-top: -150%;
}

#time-container {
  height:34px;
  padding:3px;
  background-color: #fff;
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  color:#555;
 
}

#time { font-size: 2em; }
