html {
  background-color: #E91E63; 
  font-family: Helvetica, sans-serif;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: #FCE4EC;
}

body {
  display: flex;
  flex: 1;
  min-height: 100vh;
  align-items: center;
}

p {
  padding-top:25px;
}

.clock {
  width: 200px;
  height: 200px;
  border: 6px solid #FCE4EC;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

.clock-face {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-3px); /* account for the height of the clock hands*/
}

.hand {
  width: 55%;
  height: 5px;
  background-color: #F8BBD0;
  position: absolute;
  top: 50%;
  transform-origin: 90%; /*50% is center, 100% is the very right side*/
  transform: rotate(90deg); /*hands start at 12 o'clock*/
  transition: all 0.05s cubic-bezier(0.1, 2.7, 0.58, 1);
}

.second-hand {
  width: 62%;
  height: 2px;
  background-color: #C2185B;
  transform-origin: 80%;
}

.min-hand {
  background-color: #FCE4EC;
}

.hour-hand {
  background-color: #F48FB1;
  width: 40%;
  margin-left: 24px;
}