@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "Exo 2", sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

   
    background-image: url('assets/webbg.png');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 

    text-align: center;
    flex-direction: column;
}

.blue {
    color: #3fb9c1;
}

.main-txt {
    color: white;
    font-size: 70px;
    width: 960px;
    line-height: 90px;
    position: relative;
    bottom: 50px;
}

.info {
    background-color: rgba(90, 90, 90, 0.671);
    color: white;
    font-size: 10px;
    padding: 0 15px; 
    border-radius: 5px;
    height: 35px;
    position: relative;
    bottom: 35px;
    display: flex;
    align-items: center;   
    justify-content: center; 
}

.info h2{
    font-weight:  500;
}

.about{
    color: white;
    width: 780px;
    position: relative;
    bottom: 80px;
    font-size: 20px;
}

.join {
  padding: 15px 20px;
  font-size: 16px;
  font-family: sans-serif;
  background-color: #3fb9c1;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  bottom: 40px;
  position: relative;
  user-select: none;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.join:hover .arrow {
  transform: translateX(5px);
}

.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}



.nav-center {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-center a {
  text-decoration: none;
  color: white;
  font-weight: 700; 
  font-size: 16px;
  transition: color 0.3s;
}

.nav-center a:hover {
  color: #3fb9c1;
}

.nav-center a.active {
  color: #3fb9c1; 
}




.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; 

  box-sizing: border-box;
  z-index: 1000;
}

.logo {
  height: 250px;
  width: auto;
}


.nav-center {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
  margin-top: 10px; 
}


.nav-right {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 10px;
}


.join-btn {
  padding: 13px 15px;
  font-weight: bold;
  font-size: 16px;
  background-color: #484b4ba9;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  transition: background-color 0.3s;
}

.join:hover {
  background-color: #34a3aa;
}



.menu-toggle {
  display: none;
  color: white;
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    padding: 20px 0;
    position: absolute;
    top: 80px; 
    left: 0;
  }

  .nav-center.active {
    display: flex;
  }


  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
    margin-left: auto;
  }

  .nav-right {
    display: none;
  }

  .logo {
    height: 80px;
  }

  .main-txt {
    font-size: 36px;
    width: 90%;
    line-height: 46px;
    bottom: 20px;
  }

  .about {
    width: 90%;
    font-size: 16px;
    bottom: 30px;
  }

  .info {
    font-size: 12px;
    padding: 10px;
    bottom: 20px;
  }

  .join {
    padding: 12px 18px;
    font-size: 14px;
    bottom: 20px;
  }
}

.mobile-join-btn {
  display: none;
}


@media (max-width: 768px) {
  .logo {
    display: none;
  }

  .mobile-join-btn {
    display: block;
  }
}


