/*Base de todas las paginas (Header)*/

table.header {
    background-image: url(imagenes/Banner_Header.jpeg);
    width: 100%;
}

table.header p {
    color: #8F7;
    text-shadow: 0 0 0.2em white;
    text-align: left;
    font-size: 60px;
}

/*Base de todas las paginas (Menu/nav)*/

nav.menu {
    background-color: black;
    width: 100%;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}

a.menu {
    margin: 7%;
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-shadow: 0 0 0.2em #8F7;
}

a:hover {
    font-weight: bold;
    color: #8F7;
    text-shadow: 0 0 0.2em white;
}

nav.menu a.disabled {
    cursor: not-allowed;
    pointer-events: none;
    padding: 0.5%;
    font-weight: bold;
    color: #8F7;
    text-shadow: 0 0 0.2em white;
}

table.menu {
    width: 100%;
    text-align: center;
}

/*Base de todas las paginas (Body)*/

body {
    margin: 0%; 
    background-color: black;
    width: 100%;
    height: 100%;
    font-family: Roboto;
}

/*Base de todas las paginas (Main)*/

main {
    height: 100%;
    border: 1px solid #8F7;
}

/*Base de todas las paginas (Footer)*/

table.footer {
    background-color: black;
    width: 100%;
    height: 10%;
}

table.footer p {
    color: white;
    text-shadow: 0 0 0.2em #8F7;
    text-align: center;
}

/*Base de todas las paginas (Barra lateral)*/

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: black;
}

body::-webkit-scrollbar-thumb {
    background-color: #8F7;
    border-radius: 20px;
    border: 3px solid black;
}

/*carga.html*/

table.table_carga {
    width: 100%;
    text-align: center;
    position: absolute;
    border: 1px solid #8F7;
    height: 100%;
    color: white;
}

table.table_carga h1 {
    text-shadow: 0 0 0.2em #8F7;
}

/*index.html*/

table.table_inicio {
    text-align: center;
    padding: 10%;
}

table.table_inicio h1 {
    color: #8F7;
    text-shadow: 0 0 0.2em white;
}

table.table_inicio p {
    color: white;
    text-shadow: 0 0 0.2em #8F7;
    font-size: 30px;
}

/*productos.html*/

table.table_productos {
    color: #8F7;
    text-shadow: 0 0 0.2em white;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 3%;
}

table .agotado {
    color: red;
    text-shadow: 0 0 0.2em white;
}

/*quienes_somos.html*/

table.table_quienes_somos {
    padding: 5%;
    color: white;
    text-shadow: 0 0 0.2em #8F7;
    text-align: justify;
    width: 100%;
    height: 100%;
    font-size: 30px;
}

/*contacto.html*/

table.table_contacto {
    padding: 5%;
    color: white;
    text-shadow: 0 0 0.2em #8F7;
    text-align: justify;
    width: 100%;
    height: 100%;
}

table.table_contacto iframe {
    border: 1px solid #8F7;
    border-radius: 10%;
}

/*registro.html*/

table.table_registro {
    width: 100%;
    height: 100%;
    text-align: justify;
    padding: 5%;
    color: white;
    text-shadow: 0 0 0.2em #8F7;
}

/*FIN*/