* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Dancing Script';
  src: url(fonts/DancingScript-VariableFont_wght.ttf?v=2) format('truetype');
  font-weight: normal;
}


body {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  font-family: "Dancing Script", cursive;
}
h1, #countdown {
  color: #FFD700;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: calc(0.5em + 2vw);
}

#countdown {
  font-size: calc(0.5em + 7.5vw);
  color: #F5F5F5;
  max-width: 1000px;
  line-height: 60px;
  margin: 15.5vh;
}
#image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 25%;
}

button {
  margin-top: 20px;
  padding: 10px;
  color: #FFD700;
  background-color: #000000;
  border: 2px solid #FFD700;
  border-radius: 5px;
  cursor: pointer;
  font-size: calc(0.5em + 1vw);
  z-index: 4;
  font-family: "Dancing Script", cursive;
}

footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;  
  position: absolute;
  bottom: 40px;
}

p {
  color: #FFD700;
}