body {background: #FDCFC6;
height: 100%}

*{
margin: 0;
padding: 0;
font-family: sans-serif;}

.menu.btn {
color: #D98B8B; 
font-size: 20px;
cursor: pointer;
display: none;
}

.navbar {
padding: 20px 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
z-index: 999;
top: 0%;
background-color: #FFF2F2;
}

.navbar .menu li{
list-style: none;
display: inline-block;
}

.navbar .menu li a{
display: block;
margin-left: 20px;
color: #FE9D9B
border-bottom: 4px solid transparent;
text-decoration: none;
font-family: "lulo-one", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 20px;
}

.navbar .menu li .active {
border-bottom: 4px solid #FE9D9B;
}

.navbar .menu li a i{
color: #FE9D9B;
}

.navbar .menu li a:hover {
border-bottom: 4px solid #B9DAD4}

h1 {
text-align: center;
 font-family: "lulo-outline", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 30px;
margin-top: 30px
}

.center {
display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 650px;
 border: 5px solid #EFBCB6}
 
h2 {
font-family: "lulo-one", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 18px;
text-align: center;
color: #F78989;
margin-top: 60px;
}

.sec {
padding: 10px 5%;
}

.products{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.products .card{
width: 300px;
background: #FFF2F2;
box-shadow: 0 10px 20px #EFBCB6;
border-radius: 5px;
padding: 5px;
margin-bottom: 20px;
}

.products .card .img {
width: 300px;
height: 100%
}

.products .card .desc{
padding: 5px 20px;
font-family: "lulo-one", sans-serif;
font-weight: 500;
font-style: normal;
font-size: 13px
}

.products .card .box{
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}

.products .card .box .price {
color: #5EA6B0;
font-size: 20px;
font-weight: bold;
font-family: "lulo-one", sans-serif;
font-weight: 500;
font-style: normal;
}

.products .card .box .btn{
font-size: 13px;
color: #FFF2F2;
padding: 10px 18px;
font-weight: 900;
border: 1px solid #5EA6B0;
border-radius: 20px;
  font-family: "lulo-one", sans-serif;
font-weight: 400;
font-style: normal;
}

.products .card .box .btn:hover {
cursor: pointer;
background-color: #B9DAD4;
color: white;
}

/* footer */

footer{
background-color: #FFF2F2;
height: 10vh;
}

footer p {
text-align: center;
line-height: 10vh;
font-family: "lulo-one", sans-serif;
font-weight: 400;
font-style: normal;
}

footer p a {
text-decoration: none;
color: #F78989;
font-family: "lulo-one", sans-serif;
font-weight: 700;
font-style: normal;

}


