@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');

html, body {
  width: 100%;
  height: 100%;
  height: 100vh;
}

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 100;
  background-color: #000;
  position: relative;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

#clock {
  color: white;
  text-align: center;
  display: block;
  min-width: 200px;
  font-size: 15vw;
  font-weight: 100;

}
