*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
padding: 100px;
}
.navbar {
    width: 85%;
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 30px;
border-radius: 12px;
box-shadow:0 5px 20px;
rgba( 0,0,0,0 .1);
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo .icon{
    font-size: 22px;
    color: rgb(176, 101, 40);
}
.logo h2{
    font-size: 20px;
    color: #222;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 35px;
}
nav ul li a:hover {
    color: #ff5a1f;
}
.btn  button {
    background-color: #ff5a1f;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}
.btn button: :hover{
background-color: #e14a12;
}
nav ul li a {

    text-decoration: none;
    color: black;
    font-size: 14px;
}
.logo{
display: flex;
align-items: center;
gap: 6px;
}
.icon {
    color: #ff5a1f;
    font-size: 20px;
}
ul li a{
    font-weight: bold;
}