body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6ec4f23d !important;
  min-height: 720px;
}
.video-container {
  width: 560px; /* Adjust width as needed */
  height: 315px; /* Adjust height as needed */
  margin: 50px auto; /* Center the video vertically and horizontally */
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden; /* Hide any content that might overflow the container */
}

.video-container iframe {
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  padding: 10px 0;
  text-align: center;
  z-index: 1000;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

#main-page-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.user-input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  margin-top: 100px;
}

.heading {
  text-align: center;
  margin-bottom: 30px;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  color: #0b0b0b;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 1.5rem;
  color: #0e0d0d;
  opacity: 1.5;
  margin-bottom: 50px;
}

.user-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.user-input input {
  width: 80%;
  max-width: 35rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  background-color: #4c82af;
  text-align: center;
  padding: 1.5rem 1rem;
  margin: 1rem 1rem 2rem 1rem;
  color: black;
}

.user-input input::placeholder {
  color: #eee5e9;
  color: #edeff4;
}

.button {
  outline: none;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  background-color: #4c82af;
  color: black;
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
}

.button i {
  margin-left: 1rem;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin-top: 50px;
}

.qr-code {
  display: flex;
  border-radius: 1rem;
  background-color: #4c82af;
  width: fit-content;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.qr-code button {
  display: flex;
  justify-content: center;
  background-color: #1f1f1f;
  color: #eae6e5;
  border: none;
  outline: none;
  width: 100%;
  margin-top: 2.5rem;
  border-radius: 1rem;
}

.qr-code button a {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #4c82af;
  padding: 1rem;
}

.qr-code button a i {
  margin-left: 0.5rem;
}

#downloadBtn {
  width: 150px;
  height: 40px;
  font-size: 1.2rem;
  background-color: #4c82af;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 20px;
}