* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  color: #3c4b3f;
  line-height: 1.6;
  position: relative;
}

header {
  background-color: #3c4b3f;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 900;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Set the height of the navbar */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  padding-top: 0px;
}

.logo img {
  height:auto; /* Adjust logo height to fit inside the navbar */
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  line-height: 100px; /* Vertically aligns text in the navbar */
}

.auth-buttons {
  display: flex;
  gap: 15px;

  padding-bottom: 25px; /* Adds space between signup and login buttons */
}

.auth-buttons .btn {
  padding: 10px 20px;
  background-color: white;
  color: #4caf50;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

.auth-buttons .signup-btn {
  background-color: #f93;
  color: white;
}

.auth-buttons .btn {
  padding: 10px 20px;
  background-color: #f93;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  margin-left: 15px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #aff1ee;
}

.hero-content {
  z-index: 1;
}

.logo {
  width: 100px;
  height: 100px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #f93;
  color: black;
  text-decoration: none;
  border-radius: 5px;
}

.content {
  padding: 50px 20px;
}

.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  z-index: 1; /* Ensure content is above the video */
}
.cta-btn {
  padding: 10px 20px;
  background-color: #f93;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px; /* Add space between text and button */
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px; /* Add margin between h1 and p */
  -webkit-text-fill-color: #aff1ee;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  /* Space between paragraph and button */
}

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #aff1b2;
  background: #fff url("logo12.webp") no-repeat center center;
  z-index: 10000;
}

.stop {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff url("logo12.webp") no-repeat center center;
  z-index: 10000;
  display: none;
}
