body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  overflow: hidden;
  font-family: 'Helvetica', sans-serif;
  color: #fefefe;
  background-color: #000000;
}

.page {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url('./images/bg1.jpg');
  background-color: #000000;
  background-size: cover;
  background-position: 0% 50%;
  filter: blur(10px);
  transform: scale(1.2);
  z-index: -10;
}

.page.countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 0px 14px #000000;
  transition: opacity 5s;
  z-index: 10;
}

#countdown {
  font-size: 48pt;
  position: relative;
  display: none;
}

#countdown::after {
  content: ' until 11:11';
  position: absolute;
  font-size: 20pt;
  bottom: -1.5rem;
  right: 0.5rem;
  text-align: right;
  white-space: nowrap;
}

#countdown[data-time='11:11:11']::before {
  content: ':)';
  position: absolute;
  bottom: 0.8rem;
  right: -2rem;
  font-size: 48px;
}

@media (min-width: 1024px) {
  #countdown {
    font-size: 96pt;
  }
  #countdown:not(:empty)::after {
    left: 100%;
    bottom: 1.5rem;
    margin-left: .5rem;
    text-align: left;
  }
  #countdown[data-time='11:11:11']:not(:empty)::before {
    bottom: 4rem;
  }
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 10pt;
}

footer a, footer a:visited {
  color: #fefefe;
}

.page.video {
  background-color: #000000;
  z-index: 0;
}

#clock {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0.5rem;
  border-bottom-right-radius: 10px;
  font-size: 12pt;
  text-align: left;
  background-color: #000000;
  opacity: 0;
  transition: opacity 3s;
  z-index: 5;
}

#player {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}