:root {
  --mainColour: #912191;
  --secondaryColour: #009FE3;
}

body {
  background: #121212;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.logo {
  width: 32%;
  margin: 2em 34% 5em;
}

.clockContainer {
  width: 100%;
  height: 20em;
}

#majorMarkings {
  stroke: var(--mainColour);
  stroke-width: 4;
}

#minorMarkings {
  stroke: white;
  stroke-width: 2;
}

.hand {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

#hourHand {
  stroke: white;
  stroke-width: 4;
}

#minuteHand {
  stroke: white;
  stroke-width: 2;
}

#secondHand {
  stroke: var(--secondaryColour);
  stroke-width: 2;
}

.textTimes {
  text-align: center;
  margin: 2em;
}

.textTimes p {
  margin: 0px;
}

#digiClock {
  font-size: 300%;
  margin-bottom: 0.3em;
}

#wordTime {
  font-size: 300%;
  margin-bottom: 0.3em;
}

#wordDate {
  font-size: 200%;
}

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  text-align: right;
  font-family: 'Segoe UI', sans-serif;
  font-size: 70%;
  padding-right: 0.5em;
  line-height: 0.75em;
}