
body{
font-family: Arial;
margin:0;
background:#f4ffff;
text-align:center;
}

header{
background:#00cfcf;
color:white;
padding:20px;
}

nav a{
margin:10px;
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
padding:80px;
background:#e6ffff;
}

.btn{
background:#00bfbf;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
}

.products{
display:flex;
justify-content:center;
gap:30px;
padding:40px;
flex-wrap:wrap;
}

.card{
background:white;
padding:20px;
width:250px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.product-img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

button{
background:#00bfbf;
color:white;
border:none;
padding:10px;
border-radius:5px;
cursor:pointer;
}
