@font-face {
  font-family: 'Waukegan';
  src: url('https://uvxfjuahraucsdfexecy.supabase.co/storage/v1/object/public/open/fonts/WaukeganLdoExtended-x3lR.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: 'Waukegan';
  color: white;
  background: black;
}

.custom-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.form-box {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 500px;
  height: 220px;
  padding: 40px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  border-radius: 5px;
  box-shadow: 0 0 10px #000;
}

.header-text {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

input, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-size: 18px;
  border-radius: 5px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
}

button {
  cursor: pointer;
}

.countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 0;
  z-index: 10; /* Set a higher z-index to appear above the video */
  display: flex; /* Set display to flex to make items horizontal */
  justify-content: center; /* Center the items horizontally */
}

.countdown-item {
  list-style: none;
  flex: 0 0 13%;
  padding-bottom: 0;
  margin: 0 5px; /* Adjust margin for spacing between items */
  vertical-align: top;
}

.countdown-title {
  color: var(--white-color);
  font-size: 8vw;
  font-family: sans-serif;
  padding-bottom: 0;
  text-align: center;
  text-shadow: 
  0 0 30px #000, /* Black shadow */ 
  0 0 30px rgba(255, 255, 255, 0.8);
  margin: 0;
  border: 1px black;
}

.countdown-text {
  color: var(--white-color);
  font-size: 4vw;
  font-family: sans-serif;
  padding-bottom: 0;
  font-weight: bold;
  text-align: center;
  text-shadow: 
  0 0 30px #000, /* Black shadow */ 
  0 0 30px rgba(255, 255, 255, 0.8);
  margin: 0;
  border: 1px black;
}