body {
  background-color: #fcfcfc;
}

.log {
  width: 464px;
  height: 72px;
  margin: 0 auto;
  margin-top: 15%;
  background-image: url("img/log.png");
  animation-name: log;
  animation-fill-mode: both;
  animation-direction: 3s;
  animation-delay: 0s;
  animation-duration: 2s;
}

@keyframes log {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.number {
  width: 440px;
  height: 72px;
  margin: 0 auto;
  margin-top: 5%;
  animation-name: number;
  animation-fill-mode: both;
  animation-delay: 1s;
  animation-duration: 1s;

  text-align: center;
  font-family: Verdana;
  font-size: 45px;
  color: #36a8c3;
}

@keyframes number {
    from { opacity: 0; }
    to   { opacity: 1; }
}
