body {
    font-family: Arial, sans-serif;
    background-image: url('fondo-ceramicas.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #333;
}

.contenedor {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #083D77;
    margin: 0;
    font-size: 28px;
}

.descripcion {
    font-size: 16px;
    color: #333;
    margin: 10px 0 20px;
}

.botones a {
    display: block;
    text-decoration: none;
    background: #EB5E28;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.botones a:hover {
    background: #C54B22;
}
