
body {
    display: grid;
    grid-template-columns: 100px 1fr 1fr 1fr 100px; /* Adjust the fixed width as needed */
    grid-template-rows: 1fr 1fr 1fr 1fr;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.left-column {
    grid-column: 1;
    grid-row: 1 / -1;
    background-color: rgba(139, 69, 19, 0.5);
}

.right-column {
    grid-column: 5;
    grid-row: 1 / -1;
    background-color: rgba(139, 69, 19, 0.5);
}

header {
    grid-column: 2 / 5;
    grid-row: 1 / 2;
    background-color: rgba(255, 0, 0, 0.3);
    text-align: center;
}

#title-container {
    grid-column: 2 / 5;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    background-color: aquamarine;
    text-align: center;
}

#website-name {
    margin: 0;
}

#featured-dishes {
    margin: 0;
}

.image-gallery {
    grid-column: 2 / 5;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    background-color: rgba(255, 255, 0, 0.3);
}

footer {
    grid-column: 2 / 5;
    grid-row: 4 / 5;
    background-color: rgba(255, 0, 255, 0.3);
}

.image-item {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
