
a, a:hover{
    text-decoration: none;
}
.top-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: #c95133;
}
.top-bar span img{
    width: 300px;
    height: 50px;
    background: none;
    mix-blend-mode: color-burn;

}
.top-bar ul{
    list-style: none;
    display: flex;
    

}
.top-bar li{
    margin: 0px 5px;
   
}

.top-bar a{
    color: #fff;


}

.top-bar a:hover{
    color: #222;
    
}
@media(max-width:500px)
{
    .top-bar span img{
        width: 180px;
        height: 20px; 
        font-weight: bolder;
    }
}
@media(max-width:340px)
{
    
    .top-bar{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}