*{
    margin: 0 ;
    padding : 0;
    font-family: sans-serif;
}

/*Navbar*/
.container1{
    width: 100%;
}
#navbar {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    background: #F2AA4CFF;
    line-height: 93px;
}
#logo {
    height: 77px;
}

#logo img {
    height: 53px;
    margin: 4px 40px;        /* Top, Left*/
    
}

/* Navigation Bar: List Styling */
#navbar ul li {
    display: inline-block;
    position: relative;
    margin: 0px 20px;      
}

#navbar ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    text-transform: uppercase;
}


#navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    position: absolute;
    background: black;
    left: 0;
    bottom: 35px;
    transition: 0.5s ease;
}

#navbar ul li:hover::after {
    width: 100%;
}
/*End navbar*/

body{
    background : #101820FF ;
    width: 100%;
}

.container{
    position: absolute;
    background: bisque;
    width: 60%;
    margin-left: 200px;
    margin-top: 40px;
}

.container .title{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
    font-weight: 600;
    font-size: 80px;
    font-style: italic;
    text-align: center;
    padding-top: 20px;
    color : rgb(0, 0, 0);
}

.menu .table .food{
    margin-left: 100px;
}

.menu .table .foodname{
    margin-left: 30px;
    font-size: 18px;
}

.menu tr td{
    padding-top: 30px
}

.menu .table .price{
    font-size: 18px;
 } 



/* footer */
footer .container1 {
    margin-top: 1000px;
    width: 100%;
    padding: 54px 0%;                     /*Top, Left*/
    background-color: black;
    display: flex;
}

footer .container1 div {
    text-align: center;
}

.container1 div h3 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/*Underline*/
.container1 .col-1 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 41px;
    width: 56px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

.container1 .col-2 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 335px;
    width: 75px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

.container1 .col-3 h3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 44px;
    width: 59px;
    height: 2px;
    background-color: rgb(255, 0, 0);
}

/* Col 1*/
.col-1 {
    width: 200px;
}

.col-1 .info li {
    display: flex;
    margin: 16px;

}

.col-1 .info li span:nth-child(n) {
    color: gold;
    font-size: 14px;
    margin-right: 9px;
    cursor: pointer;
}

.col-1 .info li span:nth-child(n):hover {
    color: #fff;
}

.col-1 .info li p {
    color: bisque;
    font-size: 15px;
}

.col-1 .info li p:hover {
    color: white;
}
/*For phone*/
.col-1 .info li a {
    color: bisque;
    text-decoration: none;
    font-size: 15px;
}
.col-1 .info li a:hover {
    color: white;
}

/*Ending  Col 1*/


/* Col 2 */
.col-2 {
    flex-grow: 1;
}


/* Underline */
form input {
    width: 400px;
    height: 45px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    border: none;
}

form button {
    background: transparent;
    border: 3px solid gold;
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;  
    /*10 px from top & bottom, 30 px from left & Right*/
    cursor: pointer;
}

/* End col2 */

/* Col3 */
.socialicons {
    margin-bottom: 10px;
    display: flex;

}

.socialicons li {
    list-style: none;
}

.socialicons li a {
    width: 30px;
    display: inline-flex;
    text-decoration: none;
    font-size: 22px;
    margin: 10px;
    color: gold;
}

.socialicons li a:hover {
    font-size: 22px;
    color: white;
}


.quicklinks ul li a {
    color: bisque;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quicklinks ul li a:hover {
    color: #fff;
}

/* End Col3 */