html {
    font-family: "Lalezar", system-ui, Arial;
    /* font-weight: 100; */
    /* font-style: normal; */
    background-color: #006242;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white
}

.title {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    font-size: calc(15px + 1.9vw);
}

.title-description {
    margin-right: 3px;
    font-size: calc(8px + .9vw);
}

img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    overflow: hidden;
    opacity: 0.1;
}

.category {
    padding: 8px;
    border-radius: 5px;
    min-width: 100vw;
}

.items {
    list-style: none;
}

.items li {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: calc(9px + 1.8vw);
    flex-direction: row;
    width: 100%;
}

.items li .price {
    display: flex;
    justify-content: space-between;
    width: calc(23px + 3vw);
    
}

.items li:last-child {
    text-align: right;
}



.seperator {
    height: 2px;
    margin: 20px 10px;
    background: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
}