body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.685);
  }
  
  #bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.74); /* Adjust opacity as needed */
    z-index: -1;
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
  }

  .content img {
    width: 200px;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1em;
    margin-bottom: 40px;
  }
  
  #countdown {
    display: flex;
    justify-content: center;
  }
  
  .countdown-item {
    margin: 0 10px;
    font-size: 1.5em;
  }
  
  .social-links {
    margin-top: 40px;
    color: white;
  }
  
  .social-link {
    margin: 0 10px;
  }
  
  .social-link i {
    font-size: 24px;
    color: white;
  }
  
  .subscribe-form {
    margin-top: 40px;
  }
  
  .subscribe-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  
  .subscribe-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
  }
  