body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

main p {
  color: black;
}

#productos-1 {
  padding-top: 150px;
  padding: 150px 20px 20px 20px;
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body {
  background-color: #282828;
  color: white;
}

#mercado {
  background-image: url(../imagenes/iconografia/mercadopago.png);
  height: 30%;
  width: 32.5%;
  background-size: cover;
  background-position: center;
}

.pago-m {
  height: 250px;
  width: 250px;
}

#visa {
  background-image: url(../imagenes/iconografia/visa.webp);
  height: 40%;
  width: 70%;
  background-size: cover;
  background-position: center;
}

.pago-v {
  height: 150px;
  width: 270px;
}

#master {
  background-image: url(../imagenes/iconografia/master.png);
  height: 50%;
  width: 32.5%;
  background-size: cover;
  background-position: center;
}

.pago-c {
  height: 200px;
  width: 400px;
}

#producto {
  background-color: white;
  width: 100%;
  margin: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#producto img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

#contenido {
  padding: 15px;
}

#contenido h1 {
  color: black;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#contenido p {
  font-size: 1rem;
}

#precio {
  margin-top: 10px;
  color: #45d62b;
}

#compraButton {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #6c757d;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (min-width: 600px) {
  #producto {
    max-width: 600px;
    width: 50%;
  }
}
