 *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
   
}
/* body{
    color:#000;
} */
#top-header{ 
    background: #000;
    color: #e3d5d5;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
#top-header ul{
    display: flex;
    list-style: none;
    align-items: center; 
}
#header-right li i{
    margin-right: 5px;
    margin-left: 5px;
    color: #8ec63f;
}
#header-right li i:hover{
    font-size: 25px;
}
#header-left li{
   
    background-color: #555252;
    width: 30px;
    height: 30px;
    border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;   
}
#top-header ul li {
    margin-right: 20px;
}

#top-header ul li i {
    font-size: 1.2rem;
}

#btn {
    background: #8ec63f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#btn:hover {
    background-color: #619e0c;
}

/* mobile responsive */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    #header-left, #header-right {
        flex-direction: column;
    }

    #header-left li, #header-right li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    #header-right {
        margin-top: 20px;
    }
}