body {
    background-color: rgb(0, 0, 0);
}
* {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight:300;
}

#video-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

#bgVideo, #spriteAnimation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -100;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

#spriteAnimation {
  /* width: 100vw; */
  /* height: 100vh; */
  /* object-fit: cover; */
  background: url('/media/Lumona_sprite.jpg');
  display: block; /* Initially hidden */
}

 
#video-background {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
  
  video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    z-index: -100;
    transform: translate(-50%, -47%);
  }

  #overlay {
    position: absolute;
    /* padding: 40px; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items:baseline;
  }
  #overlay p {
    /* width: auto; */
    /* text-align: right; */
    margin-right: 1rem;
    font-size: 1rem;
  }
  #logo {
    width: 12vw;  /* You can adjust this */
    max-width: 180px;
    min-width: 140px;
    margin: 1.4vh 1.6vw;
    /* margin-bottom: 20px; */
  }
  
  #subscribe-button {
    padding: 10px 20px;
    margin-right: 80px;
    font-size: 16px;
    background-color: #000000;
    /* color: white; */
    border: 1px solid white;
    cursor: pointer;
  }
  
  #subscribe-button:hover {
    background-color: #0056b3;
  }
  /* Form
  #stay-tuned {
    padding: 50px;
    text-align: center;
    background-color: #f1f1f1; 
  }
  
  #subscribe-form {
    margin-top: 20px;
  }
  
  #email {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
 */
  /* Form Styles */
#stay-tuned {
min-height: 400px;
/* margin-left: 5vw; */
display: flex;
  /* width: auto; */
  /* max-width: 460px; */
  flex-direction: column;
  align-items: center;

}
#my-form {
  display: flex;
  min-width: 40vw;
  /* width: auto; */
  /* min-width: 400px; */
  justify-content:baseline;
  /* align-self: center; */
  /* justify-self: center; */
  /* justify-content: center; */
  /* align-items: baseline; */
  flex-direction: column;
  
}
/* #my-form {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
  } */
  
  .form-group {
    margin-bottom: 20px;
    /* width: 30vw; */
    display: flex;
    flex-direction: column;
  }
  
  label {
    /* font-weight: bold; */
    display: block;
    margin-bottom: 8px;
    /* color: #ffffff; */
    font-size: 18px;
  }
  
  input[type="email"],
  input[type="text"] {
    /* width: 100%; */
    /* min-width: 400px; */
    padding: 10px;
    /* margin-bottom: 20px; */
    border: 2px solid #333;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
  }
  
  #my-form button {
    background-color: #000000;
    /* width: 100%; */
    /* color: #fff; */
    padding: 12px 20px;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    /* font-weight: 500; */
  }
  
  #my-form button:hover {
    background-color: #00d0ff;
    border: 1px solid #00d0ff;
    color: #000;
  }
  
  #my-form-status {
    font-size: 18px;
    margin-top: 20px;
  }
  #stay-tuned h2{
    font-size: 2em;
    font-weight: 500;
    /* text-transform:uppercase; */
    letter-spacing: 0.03em;

    /* text-align: center; */
  }

/* Media Query for Mobile */
@media only screen and (max-width: 768px) {
  #logo {
    width: 40vw;
    margin: 4vh 0;
  }
#video-background{
  height: 80vh;
}
body{
  font-size: 12px;
}
#overlay{
  flex-direction: column;
  align-items: center;
}
  #my-form {
    margin-top: 10vh;
    width: 92vw;
    height: 40vh;
  }
}

