/* Define custom fonts */
@font-face {
    font-family: 'GillionLight';
    src: url('GillionLightDB.ttf') format('truetype');
}
@font-face {
    font-family: 'GillSansBold';
    src: url('Gill Sans MT.ttf') format('truetype');
}
@font-face {
    font-family: 'GillSansItalic';
    src: url('Gill Light SSi.ttf') format('truetype');
}
@font-face {
    font-family: 'MontserratLight';
    src: url('Montserrat-Light.ttf') format('truetype');
}

body {
    font-family: 'GillionLight', sans-serif;
    background-color: #FFFFD7; /* cheznadi_yellow */
    margin: 0.7cm;
    color: #000;
}

h1 {
    text-align: center;
    font-size: 2.5rem; /* Huge font size equivalent */
    font-family: 'GillSansBold';
    margin-bottom: 1.5rem;
}

h2 {
    text-align: center;
    font-size: 8rem;
    font-family: 'GillionLight';
    max-width: 80%;
    margin: auto;
}

body {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
}

.euro-symbol {
    font-size: 1.45rem;
    font-family: 'MontserratLight', sans-serif;
    white-space: nowrap; /* Prevent price wrapping */
}

.small-euro-symbol {
    font-size: 1rem;
    font-family: 'MontserratLight', sans-serif;
    white-space: nowrap; /* Prevent price wrapping */
}

@media only screen and (max-width: 768px) {
    .euro-symbol {
        font-size: 1.2rem;
    }
    .small-euro-symbol {
        font-size: 0.9rem;
    }
    h2 {
        font-size: 5rem; /* Tablets and smaller screens */
    }
    td {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 2.5rem; /* Mobile phones */
    }
    .euro-symbol {
        font-size: 1rem;
    }
    .small-euro-symbol {
        font-size: 0.7rem;
    }
    td {
        font-size: 0.6rem;
    }
}

.dish-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.dish-name {
    font-size: 1.5rem;
}

.allergens {
    margin-left: 2rem;
    font-size: 1.2rem;
    font-style: italic;
}

.dish-price {
    font-size: 1.5rem;
    font-family: 'GillionLight';
    white-space: nowrap; /* Prevent price wrapping */
    margin-left: 30px;
}

td {
    padding-left: 3px;
}

h3 {
    color: #c9211eff;
    font-size: 2.5rem;
    margin: 3px;
}

h4 {
    color: #2a67adff;
    text-align: center;
    font-size: 2.0rem;
    margin: 3px;
}

.header-container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

p {
    margin: 3px;
}

.item,.description {
    font-size: 1.2rem;
}

table {
    margin: auto;
}
