* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Starfield background */
.stars {
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: 
    radial-gradient(2px 2px at 20% 20%, #fff, transparent),
    radial-gradient(2px 2px at 50% 50%, #fff, transparent),
    radial-gradient(2px 2px at 80% 80%, #fff, transparent);
  animation: moveStars 10s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

/* Centered content */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
  /* margin-bottom: 40px; */
}

.timer div {
  text-align: center;
}

.logo {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

h1 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

h1 strong {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

p {
  max-width: 600px;
  margin: 0 auto 0px auto;
  font-size: 1rem;
  line-height: 1.5;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.btn.primary {
  background-color: #00bcd4;
  border: none;
}

.btn.secondary:hover,
.btn.primary:hover {
  transform: scale(1.05);
}


.contact-info {
  /* margin-top: 40px; */
  font-size: 1.1rem;
  color: #ddd;
  /* justify-content: center; */
  /* align-items: center; */
  /* display:inline-flex; */
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}