body {
    margin: 0;
    font-family: sans-serif;
    color: white;
    text-align: center;
    overflow: hidden; /* Prevent scrollbars */
  }
  
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: -1;
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
  }
  
  .logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  #countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  
  .time {
    margin: 0 20px;
  }
  
  .time span {
    font-size: 2em;
    display: block;
  }
  
  .label {
    font-size: 0.8em;
  }
  
  .signup {
    margin-bottom: 30px;
  }
  
  .signup input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  .signup button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .social img {
    width: 30px;
    margin: 0 10px;
  }