

#clock-container {
      width: 80px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -57px;
      margin-left: -61px;
      
}

#clock {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    border-radius: 50px;
}

.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: #929292;
  -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: 60px;
  padding: 10px;

}

#time { font-size: 14px; font-weight: bold; color: #fff; padding-left: 12px; cursor: default;}
