body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav{
    height: 80px;
    background-color: blueviolet;
    width: 100%;
    position: sticky;
    top: 0;
}

.card{
    border: 1px solid lightblue;
    border-radius: 14px;
    padding: 10px;
    margin: 10px auto;
    width: 320px;
}

.card-img{
    width: 100%;
    border-radius: 14px;
}

.help-btn{
    background-color: black;
    color: white;
    padding: 14px 26px;
    border-radius: 40px;
    border: none;
    font-size: 16px;
    position: fixed;
    bottom: 50px;
    right: 30px;
}

.relative{
background-color: orangered;
width: 700px;
height: 400px;
margin: 50px auto;
position: relative;
}
.abs{
    height: 100px;
    width: 100px;
    background-color: blueviolet;
    position: absolute;
    bottom: 0;
    right: 0;
}

.card-header{
    position: relative;
}

.best-seller{
position: absolute;
top: 0;
margin: 10px;
color: rgb(75, 46, 0);
background-color: rgb(255, 231, 185);
border-radius: 10px;
padding: 2px 12px;
font-size: 14px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.ratings{
position: absolute;
bottom: 0;
margin: 10px;
color: rgb(75, 46, 0);
background-color: rgb(255, 231, 185);
border-radius: 10px;
padding: 2px 12px;
font-size: 14px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.must-try{
position: absolute;
top: 0;
right: 0;
margin: 10px;
color: white;
background-color: rgb(40, 109, 46);
/* border-radius: 10px; */
padding: 2px 12px;
font-size: 14px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.hero{
width: 700px;
margin: 60px auto;
border-radius: 14px;
padding: 10px;
position: relative;
}

.hero-img{
width: 100%;
border-radius: 14px;
}

.hero-content{
    width: 500px;
     top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #ff0000; */
    color: white;
    position: absolute;
    bottom: 80px;
    /* margin: 40px;  */
    text-align: center;
}

.btn{
    background-color: #fff;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    border-radius: 40px;
}

.profile{
    width: 800px;
    margin: 60px auto;
    position: relative;
}

.bg-img{
    width: 100%;
}

.user{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0; 
    margin-bottom: -40px;
    margin-left: 30px;
    border: 2px solid white;
    object-fit: cover;
    object-position: center top;
}


