/* About, Menu, Schedule/Pop-Ups, Catering, Contact Us*/
/* https://css-tricks.com/autoprefixer/  run it through an auto-prefixer for compatibility reasons*/

body {
    background-color: black;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center ;
    background-attachment: fixed;
    font-family: "Georgia", "Garamond", "serif";
    color: white;
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    padding-right: 7;
    padding-left: 5;
}
a:hover {
    background: #120402;
    color: #eb1a1a;
    background-image: url(noise1.jpg), url(noise2.jpg);
    background-blend-mode: difference, normal;
    animation: sliding 60s linear infinite;
    box-shadow: 0 0 10px 10px black inset;
    border-radius: 19x;
}
@keyframes sliding {
    from { background-position: 1024px 4096px, 0 3072px;}
    to   { background-position: 0 0, 1024px 0; }
} 

.MyHeading {
    font-family: "Permanent Marker", serif;
}

/* Large */
.Logo_C{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
}

.Logo_i{  
    height: 250px;
    width: 250px;
}

.MenuBar_C{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    /*overflow: hidden;*/
    list-style: none;
    margin: 0;
    background: black;
    font-family: "Permanent Marker", serif;
    font-size: 3.5vw;  
    gap: 15px;
    position: sticky;
    top: 0;
}

.FeaturedPictures_C{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    padding: 5px;
    gap: 5px;
}

.FeaturedPictures_i{
    height:100%;
    width: 100%;
    object-fit: contain;
    padding: 5px;
    gap: 5px;
    margin: 1px;
}

.MenuItems_C{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    margin: 25px;
}
.MenuCard{
    text-align: center;
    padding: 10px 20px;
    background-color: white;
    color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 5px;
    border-radius: 16px;
}
.MenuItems_i{
    height:100%;
    width: 100%;
    object-fit: contain;
    padding: 1px;

    border-radius: 8px;
    border: 1px solid #ddd
}
.MenuItems_i:hover {
    box-shadow: 0 0 4px 2px green;
}   

.InfoFooter{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: charcoal;
    margin: 5px;
}
.InfoCol{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}