*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body{
    max-width: 720px;
    margin: 0 auto;
}

.header{
    margin: 40px 20px 0px;
}

.header h1{
    font-family: "Bebas Neue", sans-serif;
    font-size: 64px;
    line-height: 40px;
}

.header h1 span{
    font-family: "Bebas Neue", sans-serif;
    color: #f6ebd0;
}

.header p{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.menu-image{
    padding: 20px;
    position: sticky;
    top: 0px;
    z-index: 2;
    backdrop-filter: blur(10px) saturate(150%);
}

.container{
    display: flex;
    justify-content: center;
}

.menu-category{
    border: 1px solid #cfcfce;
    padding: 20px;
    margin: 20px 20px 20px 20px;
    border-radius: 30px;
    position: relative;
}

.category-image-container {
    display: flex;
}

.category-image-container.image-right {
    justify-content: flex-end;
    margin-right: 60px;
    margin-left: 0;
}

.category-image-container.image-left {
    justify-content: flex-start;
    margin-left: 60px;
    margin-right: 0;
}

.category-image{
    -webkit-box-shadow: 30px 30px 20px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 30px 30px 20px 0 rgba(0,0,0,.15);
    box-shadow: 30px 30px 20px 0 rgba(0,0,0,.15);
    border-radius: 50%;
    z-index: 1;
}

.menu-category:last-of-type {
    background-color: #f6ebd0;
    border: none;
}

.menu-category:last-of-type .category-header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, #f6ebd0 100%) !important;
}

.menu-items{
    padding: 8px;
}

.menu-item{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 40px;
}

.item-name, .item-price{
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
}

.item-desc{
    font-size: 10px;
}

.category-header{
    background: linear-gradient(90deg,#f6ebd0 0%, rgba(255, 255, 255, 1) 100%);
    padding: 8px 16px;
    border-radius: 10px;
}

.category-header h3{
    text-transform: capitalize;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
}

.category-header p{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-top: -10px;
}

.deals-padding{
    padding: 20px;
}

.deals{
    padding: 20px;
    background-image: url('images/deals.avif');
    background-position: center;
    background-size: cover;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
}

.copyright{
    text-align: center;
    font-size: 9px;
    margin: 40px 0 20px;
}

.copyright a{
    font-weight: 700;
    text-decoration: none;
    color: black;
}