/* Absolute Center Spinner */
/* 
.countdown {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.countdown:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,1), rgba(0, 0, 0, 1));

  background: -webkit-radial-gradient(rgba(20, 20, 20,1), rgba(0, 0, 0,1));
}
 */


.countdown{
    height: 100vh;
    justify-content: center;
    align-items: center;
    color: white;
    background: #222;
    font-size: 100px;
    display: none;
}