

.body{
    font-family: 'Poppins', sans-serif;
}

.navbar .nav-item a{
    color: rgb(46, 59, 59);
    display: inline-block;
    
    padding: 5px;
    border: 2px solid transparent;
    transition: transform 0.1s ease-in-out, border 0.1s ease, color 0.1s ;
}
.nav-item {
    
    margin-right:5px ;
    border-radius: 10px;
   border: none;
    
}
.navbar .nav-item a:hover{
    transform: scale(1.1);
    color: #ff0000;
    border: #ff0000;
}

.price{
 
    font-size: x-large;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    
 
    
}
.price:hover{
    cursor: pointer;
    background-color: cadetblue;
    box-shadow: 2px 5px black;
    color: aliceblue;
}






