body{
    font-family: Arial;
    margin: 0;
    background-color: gold;
}
.navbar{
    display: flex;
    justify-content: space-between;
    background: #333;
    padding: 10px;

}


.logo{
    color: yellow;
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: none;
    padding-top: 10px;

}

ul{
    list-style: none;
    display: flex;
}

ul li{
    margin: 0 10px;

}
ul li a{
    text-decoration: none;
    color:white;
    font-family: Arial;
    font-weight: bold;
}

ul li a:hover{
    color:red;
}
.slider img{
    width: 100px;
    height: 300px;
}
.content{
    padding: 20px;
    text-align: center;
}
.products{
    display: flex;
    justify-content: center;
    text-align: center;
}

.card{
    margin: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    transition: 0.3s;
}
.card:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px blue;
}
.card img{
    width: 200px;
}

footer{
    background: #33333370;
    color: white;
    text-align: center;
    padding: 20px;
    font-style: italic;

}

