.clock {
  background: url(ClockFace.svg) no-repeat center;
  background-size: 100%;
  height: 110px;
  padding-bottom: 0%;
  padding-top: 0%;
  position: relative;
  width: 110px;
}

.minutes-container, .hours-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hours {
  background: url(ClockLittleHand.svg) no-repeat center;
  background-size: 100%;
  
  position: absolute;
  transform-origin: 50% 100%;
  
  height: 23%;
  left: 48.02%;
  top: 27%;
  width: 3.96%;
}

.minutes {
  background: url(ClockBigHand.svg) no-repeat center;
  background-size: 100%;
  
  position: absolute;
  transform-origin: 50% 100%;
  
  height: 35%;
  left: 47.95%;
  top: 15%;
  width: 4.1%;
}
