body {
    background-color: azure;
}

.title {
    text-align: center;
    font-size: 80px;
}

.buttons {
    font-size: 50px;
    padding: 5px;
    margin: 10px;
}

.buttons_div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
}

.header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.header_button {
    font-size: 20px;
    padding: 5px;
    margin: 10px; 
}

.food_div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.element {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 900px; /* zmiana szerokości na 300px */
    font-size: 40px;
}

.element .name {
    flex-grow: 1;
    max-width: 900px; /* maksymalna szerokość 200px */
    overflow: hidden; /* ukrywanie treści, gdy przekroczy szerokość */
    white-space: nowrap; /* niezawijanie tekstu */
    text-overflow: ellipsis; /* wyświetlenie "..." dla przekroczonej treści */
}

.element input[type="number"] {
    width: 60px;
    text-align: center;
}

.summary {
    font-size: 50px;
}

.element button {
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
}

.element .quantity {
    margin: 0 10px;
}

.price {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}