:root {
    --bg: rgb(9, 45, 9);
    --panel: rgb(238, 238, 238);
    --accent: rgb(6, 6, 6);
    --radius: 14px;
    font-family: Roboto, sans-serif;
}
* {
    scroll-behavior: smooth;
}
header {
    position: fixed;
    width: 100%;    height: 5%;    line-height: 100%;
    top: 0; left: 0; right: 0;      z-index: 10;

    display: flex;
    justify-content: space-around;     align-items: center;

    background: var(--panel); color: var(--bg);
    border: var(--accent) 2px solid;
    overflow-x: auto;
}
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--accent);
    z-index: 0;
    max-width: 97vw;
    scroll-behavior: smooth;
}
body img {
    background: var(--bg);
    width: 100px;
    height: 100px
}

main {
    margin: 0; padding: 0;
    left: 0; right: 0;

}
a {
    text-decoration: none;
    color: var(--bg);
    font-weight: 600;
    font-size: large;
    padding: 10px;
    border-radius: var(--radius);
}
footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--accent);
    font-size: small;
}


#titleId {
    padding-top: 15px;
    translate: 0px 20px;
    text-align: center;
    color: var(--accent);
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#titleId img {
    height: 100px;
    width: auto;
}
#titleId figcaption {
    display: flex;
    align-items: center;
    font-size: x-large;
    color: var(--panel);
    font-family: pacifico, cursive;
}
#titleId figcaption img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}


.category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
}
.category h2 {
    background: var(--panel);
    text-align: center;
    color: var(--bg);
}
.menu-item{
    width: 100%;
    height: 120px;
    display: flex;
    background: var(--panel);
    border: var(--accent) 2px solid;
    padding: 5px;
    gap: 1rem;
    align-items: center;
}
.menu-item img {
    height: inherit; width: 120px;
    border-radius: var(--radius);
}
.menu-item h3 span {
    font-weight: 400;
    font-size: medium;
    color: var(--accent);
}

/* animaion */
.menu-item:hover {
    transform: translateY(-2px);
    transition: transform 0.5s ease;
    box-shadow: 4px 4px 10px var(--panel);

}
a:hover {
    text-decoration: underline;
}
.active {
    color: var(--panel); 
    background: var(--bg);
}