<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-image: url("../Peach\ Ash\ Grey\ Gradient\ Color\ and\ Style\ Video\ Background.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.food-section {
    display: grid;
    padding: 10px;
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 15px;
}

.food-section div {
    background-color: rgba(255, 255, 255, 0.742);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px; 
}

.food-section img {
    width: 100%;
    height: auto; 
    object-fit: contain;
}

.Food {
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: relative;
    text-align: center;
}

.Food .text {
    font-size: 24px;
    font-weight: bold;
    color: rgb(61, 61, 61);
    background-color: rgba(255, 255, 255, 0);
    text-transform: uppercase;
    margin-bottom: 5px; 
}

.Food .price {
    font-size: 20px;
    font-weight: bold;
    color: rgb(61, 61, 61);
    background-color: rgba(255, 255, 255, 0);
    margin-top: 5px; 
}

.food-info {
    padding: 10px 0; 
}

.food-section .header {
    grid-column: 1 / 4; 
    padding: 10px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.header .menu-items {
    background-color: rgba(255, 255, 255, 0);
}

.header i {
    font-size: 30px;
    color: rgb(255, 255, 255);
}

.header h1 {
    font-size: 24px;
    margin: 0;
    color: rgb(255, 255, 255);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 2px;
    justify-content: center;
    margin-top: 2px;
}

.menu-items li {
    flex: 1 1 calc(33.33% - 20px);
    text-align: center;
}

.menu-items li a {
    font-size: 18px;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.Hlogo img {
    width: 60px;
    height: 60px;
}

.Food img:hover{
    transform: scale(1.1);
}


@media screen and (max-width: 600px) {
    .food-section {
        grid-template-columns: 1fr 1fr;
    }

    .Food {
        flex-direction: column; 
        padding: 10px; 
    }

    .Food .text,
    .Food .price {
        font-size: 16px; 
    }

    .food-info {
        padding: 10px 0; 
    }

    .food-section .header {
        grid-column: 1 / 3; 
        height: auto; 
        padding: 10px;
    }

    .menu-items li a {
        font-size: 12px; 
    }

    .header i {
        font-size: 15px; 
    }

    .header h1 {
        font-size: 12px; 
    }
}


@media screen and (min-width: 601px) and (max-width: 1024px) {
    .food-section {
        grid-template-columns: 1fr 1fr 1fr; 
    }

    .Food {
        flex-direction: column;
        padding: 10px; 
    }

    .Food .text,
    .Food .price {
        font-size: 18px; 
    }

    .food-info {
        padding: 10px 0; 
    }

    .food-section .header {
        grid-column: 1 / 4; 
        height: 150px; 
        padding: 10px;
    }

    .menu-items li a {
        font-size: 20px;
    }

    .header i {
        font-size: 24px;
    }

    .header h1 {
        font-size: 18px; 
    }
}
</pre></body></html>