*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "kumbh Sans",sans-serif;
}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;

}   

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width:100%;
    max-width: 1300px;
    margin: 0 auto;   
    padding: 0 50px;

}

#navbar__logo {
    background-color: aqua;
    background-image: linear-gradient(to top,red  ,orange  );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;

} 

.fa-gem {
    margin-right: 0.5rem;
}
.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    height: 80px;
    color: red;

}

.navbar__item {
  display: flex;             /* make each li a flex container */
  align-items: center;       /* vertical center inside li */
  height: 100%; 
  color:#fff;
    
  
    
}

.navbar__links {
  display: flex;             /* flex container */
  align-items: center;       /* vertical center text */
  height: 100%;              /* fill li's height */
  padding: 0 15px;
  text-decoration: none;
  color: #fff;

}

.navbar__btn {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    
}
.button {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: green;
    color: #fff;
    background: red ;
}

.button:hover {
    background: red ;
    transition:  all 0.3s ease;

}

.navbar__links:hover {
    background-image: linear-gradient(to top, red ,orange  );;
    transition:  all 0.3s ease;
    
}
