* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #2d72d9;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  height: 100vh;
  font-size: 12px;
}
a {
  text-decoration: none;
  color: #fff;
  margin-top: 20px;
}
a > span {
  border: 1px solid #fff;
  padding: 15px;
  border-radius: 50px;
}
a > span:hover {
  background-color: #fff;
  color: #2d72d9;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  height: 100%;
}
.container p {
  text-align: center;
  color: #fff;
  font-size: 25px;
  margin: 0;
  margin-bottom: 20px;
}
.container > span {
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
}
.container > span > span::after {
  content: counter(count);
  animation: counter 10s linear;
  counter-reset: count 0;
}
@keyframes counter {
  0% {
    counter-increment: count 10;
  }
  10% {
    counter-increment: count 9;
  }
  20% {
    counter-increment: count 8;
  }
  30% {
    counter-increment: count 7;
  }
  40% {
    counter-increment: count 6;
  }
  50% {
    counter-increment: count 5;
  }
  60% {
    counter-increment: count 4;
  }
  70% {
    counter-increment: count 3;
  }
  80% {
    counter-increment: count 2;
  }
  90% {
    counter-increment: count 1;
  }
  100% {
    counter-increment: count 0;
  }
}
h1 {
  font-size: 15em;
  color: #fff;
  font-weight: lighter;
  margin: 0;
  padding: 0;
}

