*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    direction: rtl;
}

.logo > a > img{
    height: 70px;
    transform: rotate(-90deg);
}

.nav_box{
    display: flex;
    margin-top: 20px;
}

.nav_links{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav_links > li{
    list-style-type: none;
    padding: 10px;
}

.nav_links > li > a{
    text-decoration: none;
    color: gray;
}


.basket_box{
    height: 50px;
    width: 50px;
    padding: 3px;
    border: 2px black dotted;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn_login{
    height: 50px;
    width: 150px;
    border-radius: 20px;
    background-color: #f29c52;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.user_box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_box > div{
    padding: 10px;
}

nav{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    box-shadow: 10px 10px 10px whitesmoke;
}

.bakery_basket{
    height: 350px;
}


.text{
    font-size: 50px;
    font-weight: bold;
}

.introduce{
    height: 700px;
    background-color: #fff5ed;

}

.introduce > div{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-products{
    display: flex;
    height: 50px;
    width: 150px;
    border-radius: 20px;
    background-color: #f29c52;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: white;
}

.basket-img{
    width: 250px;
}

.title-show{
    font-size: 30px;
}

.main-text{
    color: #492d13;
}

.p-bg{
    background-color: #fff5ed;
}

#show-box{
    background-color: #fff5ed;
}
/*psudo classes*/
.nav_links > li > a :visited{
    color: gray;
}

