.navDiv{
 border: 1px solid black;
 height: 60px;
 display: flex;
 align-items: center;
 background-color: rgb(236, 200, 200);
 justify-content: space-between;
 margin-top: 10px;
 box-shadow: 0 5px 5px rgb(1,1,1,0.5),
 0 5px 5px rgb(1,1,1,0.5);
}

*{
    margin: 0px;
    padding: 0px;
}

#lakcol{
    color: rgb(87, 18, 52);
}

.navChild {
    display: flex;
  
}

.navU1{
    display: flex;
    align-items: center;
}

.navItems {
    list-style: none;
    margin-left: 20px;
}

.navItems>a {
    text-decoration: none;
    color: black;
}

.dp-i{
    height: 50px;
    margin: 0 20px 0 20px;
}

#dp-id{
    background-color: white;
    border-radius: 50px;
}

#count{
    position: absolute;
    top: 0;
    margin-top: 24px;
    margin-left: 28px;
    font-size: large;
    background-color: aliceblue;
    border-radius: 50% solid white;
}

.header{
    border: 2px solid black;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;

}

.header::before{
    content:'';
    background-image: url(images/makeup-bg.png.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width : 100%;
    height: 374px;
    z-index: -1;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.h2{
    background-color: rgb(179, 141, 84);
    color: white;
}
.cardContainer {
    margin-top: 40px;
}

.card{
    
    display: flex;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 5px 20px rgb(1,1, 1, 0.5),
    0 10px 10px rgb(1,1, 1, 0.5);
}

.img-c{
    height: 200px;
}

.right-c{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 0 10px 0;

}

#childRyt{
    padding: 5px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 1px 1px;
}
#childRyt:hover{
    cursor: pointer;
}

.hide{
    display: none;
}