  body {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #fff;
    background-color: #4c4b3d;
  }
  
  h1 {
    font-size: 60px;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Copperplate', 'Copperplate Gothic Light', sans-serif;
  }
  
  h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Copperplate', 'Copperplate Gothic Light', sans-serif;
  }
  
  #description {
    font-size: 24px;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  #location {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  .menu-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Tahoma', sans-serif;
    font-size: 20px;
    color: #4c4b3d;
    background-color: #fff;
  }
  
  .menu-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Copperplate', 'Copperplate Gothic Light', sans-serif;
color: #4c4b3d;
}

.menu-item p {
margin-bottom: 10px;
}

.menu-item-price {
font-size: 24px;
font-weight: bold;
align-self: center;
margin-left: auto;
color: #8b0000;
}

.paperclip-platter {
background-color: #ecd1af;
}

.pencil-shaving-salad {
background-color: #d9d9d9;
}

.post-it-petit-fours {
background-color: #f9ddc7;
}

.drywall-delicacy {
background-color: #b6c3b6;
}

.rebar-risotto {
background-color: #5f5f5f;
color: #fff;
}

.upholstery-udon {
background-color: #a8a04f;
}

.glue-stick-gelato {
background-color: #f3c4a4;
}

.crayon-crumble {
background-color: #f0e68c;
}

.inkwell-indulgence {
background-color: #87cefa;
}

.tesseract-tea {
background-color: #c2b280;
}

.quantum-quencher {
background-color: #b8b8b8;
}

.dark-matter-mocha {
background-color: #3b3023;
color: #fff;
}

.singularity-smoothie {
background-color: #a76f94;
}

.nebula-nectar {
background-color: #556dac;
}

.singularity-scones {
background-color: #2b2b2b;
color: #fff;
}

.nebulous-nougat {
background-color: #dcdcdc;
}

.wormhole-whoopie-pies {
background-color: #9932cc;
color: #fff;
}

.ephemeral-eclairs {
background-color: #f0e68c;
}

.invisible-baklava {
background-color: #b6c3b6;
}

.phantom-pretzels {
background-color: #d9d9d9;
}
	.image-container {
		display: flex; /* Establishes a flex container */
		justify-content: center; /* Centers images in the line (horizontally) */
		align-items: center; /* Centers images in the container (vertically) */
		width: 100%; /* Full width of the container */
		height: 100vh; /* Full height of the viewport */
	}
	.image-container img {
		width: 50%; /* Each image takes up half of the container width */
		height: auto; /* Keeps the image aspect ratio intact */
		flex-shrink: 0; /* Prevents the image from shrinking */
	}
	/* Ensures the images scale down on smaller screens */
	@media (max-width: 600px) {
		.image-container {
			flex-direction: column; /* Stacks the images vertically */
		}

		.image-container img {
			width: 100%; /* Each image takes up the full width */
		}
	}