@font-face {
  font-family: "clockicons";
  src: url("./clockicons.ttf");
}

body {
  background: #333;
}

.clock {
  text-align: center;
  margin: 150px auto;
  color: crimson;
  font-family: "clockicons", Helvetica, sans-serif;
}

.time,
.date {
  font-size: 5em;
  border-radius: 20px;
  background: #444;
}
.date {
  font-size: 3.5em;
}

@media only screen and (max-width: 800px) {
  .time {
    font-size: 3em;
  }
  .date {
    font-size: 1.5em;
  }
}
/* .second {
    animation: OP 3s;
}

@keyframes OP {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
} */
