 
          /*to change default browser css*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
 background-color: #d6d1d1;
  line-height: 1.6;
}

                  /* Header */
.navbar {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #357edd;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #007bff;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.auth-buttons a {
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-btn {
  color: #333;
  border: 1px solid #ddd;
}

.login-btn:hover {
  background-color: #f1f1f1;
}

.register-btn {
  background-color: #007bff;
  color: white;
}

.register-btn:hover {
  background-color: #0069d9;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}


.container {
  top: 50px;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #00bfff;
}

h2 {
  color: #333;
  margin-top: 30px;
}

p {
  line-height: 1.6;
}

           /*footer */ 
footer {
  margin-top: 50px;
  background-color: white;
  padding: 20px 50px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-text {
  text-align: left;
  font-size: 12px;
  color: #666;
}

.footer-text p {
  margin: 2px 0;
}