body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: url("../img/bg.png") top center no-repeat;
  opacity: 0.9; /* 90% opacity */
  background-size: cover;
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(49, 71, 89, 0.6);
  z-index: 1;
}

#main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.countdown {
  display: flex;
  z-index: 2;
}

.countdown-item {
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin: 10px;
  width: 100px;
  padding: 15px 0;
  color: #fff !important;
  z-index: 2;
}

.countdown-item h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff !important;
  z-index: 2;
}

.countdown-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff !important; 
  z-index: 2;
}

#footer {
  background: rgba(38, 55, 69, 0.7);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  text-align: center;
  z-index: 2;
}

