body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  background: url("images/background.jpg") no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.countdown div {
  text-align: center;
  font-size: 1.5rem;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
