body{
  padding: 0px;
  background-color: #000;
}

/* Estilos para el encabezado */
header {
    background-color: #333;
    color: #fff;
    padding: 7px 0 3px 0;
    text-align: center;
}

.headertitulo {
  color: white;
  text-shadow: 0 0 10px dodgerblue;
}

.headersub {
  color: white;
  text-shadow: 0 0 10px red;
}

/* Estilos para el cuerpo */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

/* Estilos para cada producto */
.producto {
    width: 300px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
}

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

.producto h2 {
    margin-top: 0;
}

.producto p {
    margin-bottom: 10px;
}

.producto button {
    margin: 10px 0 0 0;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.producto button:hover {
    background-color: #0056b3;
}

a {
  color: black;
}

/* Estilos para el pie de página */
footer {
    background-color: #333;
    color: white;
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer p {
    margin: 0;
}