
:root {
    --font-family-base: 'Merriweather', serif;
    --font-family-alt: 'Merriweather', serif;
    --font-family-header: 'Merriweather', serif;
    --background-color: #fff;
    --text-color: #333;
    --header-background-color: #fff;
    --header-text-color: #333;
    --main-background-color: #fff;
    --footer-background-color: #333;
    --footer-text-color: #fff;
    --box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --font-size-base: 1em;
    --line-height-base: 1.5;
}


body {
    font-family: var(--font-family-base);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-left: auto;
    margin-right: auto;
}

header {
    background-color: var(--header-background-color);
    color: var(--header-text-color);
    padding: 10px 0;
    text-align: center;
    font-family: var(--font-family-alt);
    width: 100%;
}

.header_titulo{
    background-color: var(--header-background-color);
    font-size: 1.5em;
    margin-bottom: 0.5em;
    text-align: center;
    font-family: var(--font-family-header);
    align-items: center;
    height: 125px;
    padding: 0;
    border: none;
}

.main_lista {
    background-color: var(--main-background-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}

.main_lista_texto{
    font-size: var(--font-size-base);
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
}

.main_lista_titulo_agregar,
.main_lista_titulo_eliminar,
.main_lista_titulo_mostrar {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    width: 256px;
    height: 256px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.main_lista_titulo_agregar:hover,
.main_lista_titulo_eliminar:hover,
.main_lista_titulo_mostrar:hover {
    transform: scale(1.1);
}

.agregarProducto,
.eliminarProducto,
.mostrarLista {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
}

.lista-compras{
    text-align: left;
    color: var(--text-color);
    font-family: var(--font-family-base);
    font-size: large;
    width: 768px;
    height: 256px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: none;
    background-color: var(--background-color);
    align-items: stretch;
}

footer {
    text-align: center;
    padding: 10px;
    color: var(--footer-text-color);
    font-family: var(--font-family-base);
    font-size: 1em;
    background-color: var(--footer-background-color);
    position: fixed;
    bottom: 0;
    width: 100%;
}
