html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background: black;
  overflow: hidden;
}

/* Contenedor del video */
.background-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: -2;
  /* filter: blur(5px); */
}

/* Contenido centrado */
.content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 700px;
}

.content img{
  width: 300px;
  height: auto;
  margin-bottom: 50px;
}

#countdown {
  font-size: 2.5rem;
  font-weight: 100;
}

.social {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.content p{
  font-size: 1.5rem;
}

.social a {
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #f04e98; /* o el color de tu marca */
}

/* Countdown */

.countdown {
  font-family: 'Montserrat', sans-serif;
  width: 550px;
  height: 378px;
  margin: auto;
  padding: 10px;
  box-sizing: border-box;
}

.countdown .flipdown {
  margin: auto;
}

.countdown p {
  text-align: center;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 35px;
}

@media(max-width: 550px) {
  .countdown {
    width: 100%;
    height: 362px;
  }

  .countdown p {
    margin-bottom: 25px;
  }

}
