﻿html {
  background:#EEE;
}

body {
  font-family:"Orbitron", sans-serif;
  color:#333;
}

a { color:#000; }

@font-face {font-family: "clockicons";
  src: url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.eot"); /* IE9*/
  src: url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.woff2") format("woff2"), /* chrome、firefox */
  url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.woff") format("woff"), /* chrome、firefox */
  url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("../clockicons/@font-face/84cb021d5f9af287ffff84b61beef6dc.svg#clockicons") format("svg"); /* iOS 4.1- */
}
.clignote {
 
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.Heure  { font-family: 'clockicons', sans-serif; text-align:center; font-size:216px; font-size:16vw;  }
.Date  { text-align:center; color:#a00; font-size:92px; font-size:3vw;  }
.Location  { text-align:center; color:#a00; font-size:72px; font-size:2vw;  }
.Location2  { text-align:center; color:#a00; font-size:72px; font-size:2vw;  }
.Vtz  { text-align:center; font-size:36px; font-size:2vw;  }
.clock {
  width: 200px;
  height: 200px;
  box-shadow: 0px 0px 0px 10px #a00;
  border-radius: 200px;
  position: relative;
}

.center, .minute-lines > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.knob {
  width: 13.3333333333px;
  height: 13.3333333333px;
  background: #111;
  border-radius: 13.3333333333px;
  z-index: 4;
}

.arm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: top left 0;
  -webkit-transform-origin: top left 0;
  -moz-transform-origin: top left 0;
  z-index: 2;
  width: 0;
  animation: rotateArms linear 60s infinite;
  -webkit-animation: rotateArms linear 60s infinite;
  -moz-animation: rotateArms linear 60s infinite;
}

.minute.arm {
  height: 76.9230769231px;
  box-shadow: 0 0 0 2px #444;
  animation-duration: 3600s;
  -webkit-animation-duration: 3600s;
  -moz-animation-duration: 3600s;
}

.hour.arm {
  height: 55.5555555556px;
  box-shadow: 0 0 0 3.3333333333px #333;
  animation-duration: 43200s;
  -webkit-animation-duration: 43200s;
  -moz-animation-duration: 43200s;
}

.second.arm {
  height: 90.9090909091px;
  box-shadow: 0 0 0 1.3333333333px #a00;
}


