@charset "utf-8";
header {
    background-image: url(banner2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 200px;
    padding-top: 100px;
}

body {
    background-image: url(fondo2.jpg);
}

.caja {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}

td {
    vertical-align: top;
}

footer {
    background-color: #81d4fa;
    font-family: arial;
    text-align: center;
}

li {
    background-color: #ADD8E6;
    color: #333;
    border: 1px solid #87CEEB;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.producto {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

.producto img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.producto h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.precio {
    color: green;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.descripcion {
    margin-bottom: 15px;
    color: #555;
}

.producto button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.producto button:hover {
    background-color: #0056b3;
}