:root {
    --clr-dark: #000000;
    --clr-light: #ffffff;
    --clr-shadow: #333333;
    --clr-001: #ffffff;
    --clr-002: #cf2734;
    --clr-003: #009344;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'Comfortaa', cursive;
    color: #ffffff;
}

body {
    background-color: #1c1c1c;
    line-height: 2.5rem;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 0;
}

.navbar {
    /* overflow: hidden; */
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    padding: 1rem 0 1rem 0;
    background-color: #ffffff;
}

.navbar a {
    color: #cf2734;
    text-decoration: none;
    font-size: 1.5rem;
}

.navbar a:hover {
    color: #009344;
}

.down-navbar {
    /* overflow: hidden; */
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    padding: 1rem 0 1rem 0;
    background-color: #ffffff;
}

.down-navbar a {
    color: #cf2734;
    text-decoration: none;
    font-size: 1.5rem;
}

.down-navbar a:hover {
    color: #009344;
}

.main {
    width: 100%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.head-place {
    margin: 5em auto 2.5em auto;
    text-align: center;
}

.head-place img {
    /* width: 20rem; */
    width: 40%;
    border-radius: 2rem;
}

#entradas,
#pastas,
#carnes,
#postres {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: auto; */
    background-color: #ffffff;
    /* text-align: center; */
    /* padding: 2rem; */
    border-radius: 2rem;
}

#pizzas,
#bebidas,
#vinos {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 2rem;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: auto;
    text-align: center; */
}

#pizzas table {
    border: none;
    color: #000000;
    width: 100%;
    margin: auto;
}

#bebidas table {
    border: none;
    color: #000000;
    width: 100%;
    margin: auto;
}

#vinos table {
    border: none;
    color: #000000;
    width: 80%;
    margin: auto;
}

#pizzas table tr {
    height: 6rem;
    font-size: 1.6rem;
    color: #000000;
}

#bebidas table tr {
    height: 6rem;
    font-size: 1.6rem;
    color: #000000;
}

#vinos table tr {
    height: 6rem;
    font-size: 1.6rem;
    color: #000000;
}

#pizzas img {
    width: 65%;
    border-radius: 50%;
    border: 5px solid #009344;
    /* box-shadow: 10px 10px 5px #6E6E6E; */
    box-shadow: 10px 10px 15px var(--clr-shadow);
}

.pi-nombre {
    text-align: left;
}

.menu-title {
    color: #cf2734;
    font-size: 2.8rem;
    margin-top: 1.5rem;
    /* padding: 0.8rem; */
}

.menu-arts {
    width: 90%;
    margin: 2rem auto;
}

.menu-arts img {
    width: 80%;
    border-radius: 2rem;
    margin-top: 2.5rem;
    border: 5px solid #009344;
    box-shadow: 5px 5px 15px var(--clr-shadow);
}

.p-nombre,
.p-desc,
.p-precio {
    color: #1c1c1c;
    text-align: center;
}

.p-nombre {
    font-size: 1.8rem;
    font-weight: bolder;
}

.p-desc,
.p-precio {
    font-size: 1.4rem
}

.p-desc {
    /* color: #009344; -- (verde) 13/3/2022 */
    font-style: italic;
    color: #cf2734;
}

#pizzas table .p-desc {
    text-align: left;
}

#bebidas table .p-desc {
    text-align: center;
}

#vinos table .p-desc {
    text-align: center;
}

.separador {
    margin: 3rem auto;
    text-align: center;
}

.separador img {
    width: 70%;
    height: 4rem;
}

.p-footer {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #000000;
    align-items: top;
}

.p-footer div {
    margin-top: 2rem;
    margin-bottom: 8rem;
    border: 0.2rem solid #009344;
    min-width: 18rem;
    padding: 1.5rem;
    border-radius: 2rem;
    /*box-shadow: 3px 3px 3px #6E6E6E;*/
    box-shadow: 3px 3px 3px var(--clr-shadow);
    font-size: 1.4rem;
}

.p-footer div a {
    text-decoration: none;
    color: #009344;
    font-size: 1.8rem;
}

@media only screen and (max-width:620px) {
    .navbar a {
        font-size: 1.3rem;
    }
    .down-navbar a {
        font-size: 1.3rem;
    }
    .main {
        margin: auto;
    }
    .menu-arts {
        width: 90%;
        margin: 1.5rem 0.5rem;
    }
    #entradas,
    #pastas,
    #carnes,
    #postres,
    #pizzas,
    #bebidas,
    #vinos {
        width: 95%;
        margin: 1em 0.5em;
    }
    .head-place img {
        width: 35%;
    }
}