
*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background:#fff ;
    color: #080808;
    

}
html{
    scroll-behavior: smooth;
}
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    
}
.title h1 a{
    text-decoration: none;
    color: rgb(25, 218, 0);
   
}
.title{
    padding: 20px;
    align-items: center;
    text-align: center;
}
#nav{
    display: flex;
  justify-content: flex-start;
    
}
#logo-div{
    display: flex;


}
#logo{
    border-radius: 20px;
}
#green{
    color: rgb(66, 255, 66);
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}
.logo{
    width: 80px;
    padding-right: 20px;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  
}
