div.countdown {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  z-index: 2;
}
div.countdown.countdown-hidden {
  display: none;
}
div.countdown div.container {
  display: flex;
  justify-content: center;
}
div.countdown a {
  display: block;
  position: relative;
  top: 50px;
  width: 80vw;
  max-width: 700px;
  background-color: #00a2cf;
  color: #edf8fb;
  text-decoration: none;
  border: 1px solid rgba(237, 248, 251, 0.3);
  padding: 1em;
  border-radius: 1em;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
div.countdown a:hover {
  border: 1px solid #edf8fb;
}
div.countdown a h3 {
  font-size: 2em;
  font-weight: 600;
}
div.countdown a h3 span {
  white-space: nowrap;
}
div.countdown a p {
  text-decoration: underline;
}

a.like-button {
  float: left;
  border-radius: 9999px;
  padding: 1px 12px 1px 12px;
  margin-right: 0.5em;
  background-color: rgb(0, 140.0869565217, 179);
  color: #edf8fb;
  text-decoration: none;
  font-size: 0.8em;
}
a.like-button.liked {
  background-color: #ff5013;
}
a.like-button i::before {
  font-size: 0.85em;
}
