
body {
  margin: 0;
  padding: 0;
  background-color: #eee;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

#clock-container {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -141px;
  margin-left: -101px;
  border: 1px solid #ccc;
  background-color: rgb(69, 208, 238);
}

#clock {
  width: 200px;
  height: 200px;
  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: 60px;
  padding: 10px;
  background-color: #fff;
}

#time { font-size: 2em; }
