/*
===
Font-Title: Open Sans Extra BOld
Font-Color: #FDA724
===
Font-White: Open Sans
Font-Color: #FFFFFF
===
Font-Size:
Menú: 87
Sub-Menú y title-level-2: 41
Text-Content: 19
=== 
font-family: 'Open Sans', sans-serif;
*/
:root{
    --font-color:#FDA724;
    --font-white:#FFFFFF;
    --font-Size-menu:87px;
    --font-Size-sub-menu:45px;
    --font-Size-title-level-2:35px;
    --font-Size-text-content:20px;
}
body{
 width: 100%;
 height: 300vh;
 padding: 0px;
 margin: 0px;
 background-color: black;
 justify-content:space-between;
 font-family: 'Open Sans', sans-serif;
}
.container{
    display: grid;
    place-items: center;
    height: 100%;
}
.menu{
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 1920px;
    max-width: 1040px;
    min-width: 990px;
    min-height: 1770px;
    overflow: hidden;
}
.bg-menu{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 296px;
    max-height: 1920px;
    max-width: 1040px;
    min-width: 990px;
    min-height: 1770px;
}
.bg-hamb{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 1920px;
    max-width: 1040px;
    min-width: 990px;
    min-height: 1770px;
}
.text-content{
    position: absolute;
    z-index: 3;
    left: 310px;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}
.title-header {
    font-size: var(--font-Size-menu);
    color: var(--font-color);
    font-weight: 800;
    margin: 0px;
    margin-top: 100px;
}
.bebidas__list,
.hamburguesas__list{
 list-style: none;
 padding: 0px;
}
.hamburguesas__title-des{
    display: flex;
    align-items: center;
}
.title-header-boss,
.title-hamburguesas{
    font-size: var(--font-Size-title-level-2);
}
.title-header-boss{
    font-weight: 400;
    color: var(--font-white);
    font-size: var(--font-Size-title-level-2);
}
.title-hamburguesas,
.title-bebidas{
    font-weight: 800;
    font-size: var(--font-Size-sub-menu);
    color: var(--font-color);
    text-align: left;
}
.hamburguesas__title-des,
.bebida__title-des{
    font-size: var(--font-Size-title-level-2);
    justify-content: space-between;
    color: var(--font-white);
    font-weight: 500;
}
.hamburguesas__title-des h4{
   margin: 0px;
}
.hamburguesas__des{
    color: var(--font-white);
    font-size: var(--font-Size-text-content);
    width: 70%;
    text-align: justify;
    margin-left: 5%;
    /* letter-spacing: 0.5px; */
    margin-top: 5%;
    font-weight: 100;
    margin-bottom: 5%;
}
.title-bebidas{
    margin-top: 20%;
    margin-bottom: 0px;
}
.bebida__title-des{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bebida__title-des h4{
    margin: 5% 0px;
}
.text-content__footer{
    margin-top: 15%;
    font-size: var(--font-Size-title-level-2);
    font-weight: 100;
    color: var(--font-white);
}
h2 a,
h3 a{
    text-decoration: none;
    color: var(--font-white);
}

h2 a:hover,
h3 a:hover{
    text-decoration:underline;
    color: var(--font-white);
}