body {
  background: url('chicken-run.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

#countdown {
  position: absolute;
  top: calc(50vh - 50px);
  /* top: 40px; */
  text-align: center;
  width: 100vw;
}

#countdown span.count {
  background: #eeeeeeaa;
  color: #333;
  backdrop-filter: blur(5px);
  font-family: cursive;
  padding: 20px 5px 20px 5px;
  font-size: 2em;
  border-radius: 15px;
  text-align: center;
  width: 80px;
  display: inline-block;
  font-weight: bold;
  margin: 0 5px;
  box-shadow: 0 5px 20px #00000088;
}

#countdown .block {
  display: inline-block;
  position: relative;
}

#countdown .label {
  position: absolute;
  color: #fff;
  bottom: -20px;
  left: 0px;
  background: #222;
  padding: 5px;
  transform: rotate(-3deg);
  font-size: .8em;
}

h1, h2 {
  color: #fff;
  font-family: sans-serif;
  position: absolute;
  top:calc(50% + 100px);
  text-align: center;
  display: none;
}
h1 {
  font-size: 5em;
  text-shadow: 0 10px 20px #555;
  width: 100vw;
}
h2 {
  color: red;
  top: calc(50% + 200px);
  left: calc(60vw);
  font-family: fantasy, cursive;
  background: #222;
  padding: 5px 20px;
  border-radius: 8px;
}
