
.navbar {
    background-color: rgb(239, 36, 36);
    color: white;
    padding: 10px 20px;
}
.container>{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .logo{
    width: 80px;

}
.logo>img{
    width: 100%;
}
.list>li{
    display: inline-block;
    align: center;
    margin-right: 30px;
    list-style: none
}
.list>li:hover{
    color: rgb(8, 8, 8);
    cursor: pointer;
}
.info{
    width: 100%;
    height:auto;
    backcground-color: rgb(162, 162, 168)
}
.para{
    background-color: rgb(40, 160, 234);
    color: white;
}
span:hover{
    color: red;
    cursor: pointer;
    font-size: 25px;
    padding: 10px;
    margin: 0;

}
button.hover-effect:hover {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
