@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
  box-sizing: border-box;
}

h2{
  text-decoration: underline;
  position: relative;
  top:55%;
}

body {

  background-image: url(image.jpg);
  background-size:cover; 
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Lobster', cursive;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  text-align: center;
}

.countdown-container{
  display: flex;
  position: relative;
  top:50% ;
}

.time {
  display: flex;
  font-size: 1.6em;
  flex-direction: column;
  margin: 0 15px;
}

.time h1 {
  margin-bottom: 0;
}

.time small {
  color: #ccc;
}
canvas{
  z-index: 2;
}

.blinking{
  animation:blinkingText 1s infinite;
}
@keyframes blinkingText{
  0%{   color: #fff;  }
  49%{  color: transparent; }
  50%{  color: transparent; }
  99%{  color:transparent;  }
  100%{ color: #fff;  }
}
