body {
    background: linear-gradient(135deg, #1e1e2f, #2a2a40, #3d3d5c);
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;

    font-family: 'Port Lligat Slab', serif;
    color: rgb(255, 255, 255);
    height: 100vh;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.menu {
    margin-bottom: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu_restName {
    text-align: center;
    font-size: 70px;
    margin-top: 0;
    padding-top: 10px;
}

.menu_title {
    text-align: center;
    font-size: 4em;
    background: -webkit-linear-gradient(90deg, #ff2f2f, #f98d6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.menu_column {
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
}

.menu_section {
    margin-bottom: 6px;
}

.menu_section h3 {
    font-style: italic;
    background: -webkit-linear-gradient(90deg, #ff2f2f, #f98d6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2em;
}

.menu_item {
    margin: 0 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu_item h4 {
    margin: 0;
}

.menu_item-right {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    bottom: 0;
    right: 0;
    min-width: 60px;
}

.menu_item-right--ml {
    top: 0;
}

.menu_item-right > .price {
    margin-top: 14px;
}

.price {
    display: block;
    font-weight: 700;
}

.ml {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.price--color {
    color: rgb(255, 255, 255);
}

.description {
    margin-top: 5px;
    font-style: italic;
    display: flex;
    align-items: center;
    min-height: 18px;
    text-align: center;
    padding-right: 65px;
}

.description::before,
.description::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.description::before {
    margin-right: 0.5em;
}

.description::after {
    margin-left: 0.5em;
}

.no_description {
    margin-top: 5px;
    font-style: italic;
    display: flex;
    align-items: center;
    min-height: 18px;
    text-align: center;
    padding-right: 65px;
}

.no_description::before,
.no_description::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(255, 255, 255);
}

.section_separator {
    height: 61px;
}

.logo_container {
    text-align: center;
}

.logo {
    width: 50vw;
}

.logo_footer {
    width: 50px;
    height: 50px;
}

.shishka {
    position: fixed;
    left: 1%;
    bottom: 10px;
    height: 15vw;
}

footer:not(.app-footer) {
    text-align: center;
    font-size: 11px;
    font-style: italic;
}

@media (max-width: 575px) {
    .menu_title {
        text-align: center;
        font-size: 3em;
        margin: 0px;
    }

    .menu_section h3 {
        text-align: center;
        font-size: 30px;
    }

    .logo {
        width: 80vw;
    }

    .menu_column {
        width: 100%;
    }

    .shishka {
        display: none;
    }
}
