@font-face {
  font-family: 'digital-7';
  src: url('digital-7.ttf');
}
@font-face {
  font-family: 'digital-7-mono';
  src: url('digital-7 (mono).ttf');
}
* {
  font-family: Arial, Helvetica, sans-serif;
}
body {
     align-items: center;
     background: #000;
     color: #fff;
     display: flex;
     flex-direction: column;
     height: 100vh;
     justify-content: center;
}
#timeofday {
     animation: glow 1s ease-in-out infinite alternate;
     font-family: 'digital-7-mono', sans-serif;
     font-size: 20vw;
     font-weight: bold;
     margin: 32px;
     -moz-animation: glow 1s ease-in-out infinite alternate;
     -webkit-animation: glow 1s ease-in-out infinite alternate;
}
#dateandyear {
     animation: glow 1s ease-in-out infinite alternate;
     font-family: 'digital-7', sans-serif;
     font-size: 5vw;
     font-weight: bold;
     margin: 32px;
     -moz-animation: glow 1s ease-in-out infinite alternate;
     -webkit-animation: glow 1s ease-in-out infinite alternate;
}
