.container {
    width: 1200px;
    background-color: #322727;
    display: flex;
    align-items: flex-start; /* Вирівнюємо ліву частину по верху */
    padding: 30px;
    margin: 0 auto;

}
.main{
    background-color: #FFFFFF;
    display: flex;
    align-items: flex-start; /* Вирівнюємо ліву частину по верху */
    padding: 20px;
    margin-bottom: 40px;
    margin-right: 30px;
    margin-top: 10px;
}
.left-section {
    width: 40%; /* Ширина лівої частини */
    padding-right: 20px; /* Простір між лівою та правою частинами */
}

.left-section img {
    width: 400px;
    height: 350px;
}

.overlay-block {
    width: 370px;
    height: 250px;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: black;
    border-radius: 10px;
    top: 270px;
    left: 550px;
}

.overlay-block h1, .overlay-block p {
    text-align: center;
    color: white;
}

.overlay-block h1{
  margin-top: 50px;
}

.overlay-block span{
  color: #FDCA19;
}

.right-section {
    border-radius: 20px;
    padding: 20px;
    width: 60%; /* Ширина правої частини */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.right-section h2{
  position: absolute;
  top: 50px;
}

.menu-item {
    background-color: white; /* Фон кожного пункту меню */
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px;
    text-align: center;
    width: 200px; /* Ширина кожного пункту меню */
}

.menu-item h3{
    margin: 0;
}

.price{

  color: gray;
  margin-top: 2px;
}

.line {
  position: relative;
  width: 150px;
  height: 1px;
  background: #ccc;
  margin: 0 auto;
  margin-top: 20px;
}

.line:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ccc;
}

.all-menu-button {
    position: absolute;
    top: 450px;
    right: 400px;
    padding: 10px 20px;
    background-color: black ;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.all-menu-button:hover {
    background-color: #0056b3;
}