body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  color: #fff;
  text-align: center;
  background: url('images/background.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(80, 0, 0, 0.5);
  z-index: 0;
}

header {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

main h2 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
  color: #ffead0;
}

main h3 {
  font-size: 1.5em;
  color: #ffb366;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.2em;
  background-color: rgba(255,255,255,0.2);
  padding: 10px 0;
  border-top: 2px solid #a61d3b;
  border-bottom: 2px solid #a61d3b;
}

#countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  padding: 15px 0;
  background-color: rgba(255,255,255,0.1);
  border-top: 1px solid #a61d3b;
}

footer .social a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s;
}

footer .social .whatsapp { background-color: #25d366; }
footer .social .facebook { background-color: #1877f2; }
footer .social .instagram { background-color: #c13584; }

footer p {
  font-size: 0.9em;
  color: #ffe;
  margin-top: 10px;
}
