body{
margin:0;
font-family:Arial;
background:#f5f5f5;
}

header{
background:#d63384;
color:white;
padding:20px;
text-align:center;
}

nav{
background:#ff80bf;
padding:15px;
text-align:center;
}

nav a{
color:white;
text-decoration:none;
margin:15px;
font-weight:bold;
}

.banner{
padding:80px;
text-align:center;
background:#ffe6f2;
}

.productos{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.card{
background:white;
width:300px;
padding:15px;
text-align:center;
border-radius:10px;
box-shadow:0 0 8px gray;
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

button{
background:#d63384;
color:white;
border:none;
padding:10px 20px;
border-radius:5px;
cursor:pointer;
}