
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #e53935;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
nav a {
    color: white;
    text-decoration: none;
}
.section {
    padding: 20px;
}
.productos-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.producto {
    width: 200px;
    text-align: center;
}
.producto img {
    width: 100%;
    height: auto;
}
.precio {
    color: green;
    font-weight: bold;
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px;
}
