body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #f8f4e3;
    color: #333;
}
header {
    background-color: #b2935a;
    color: white;
	 padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
}
.title {
            font-size: 24px;
            font-weight: bold;
}
a:link {
    color: pink;
}
/* A link that has been visited */
a:visited {
    color: #b2935a;
}
/* A link that is hovered on */
label{
	display:block;
}
a:hover {
    color: red;
}
/* A link that is selected */
a:active {
    color: green;
}
.header-image {
            width: 100px;
            height: auto;
            margin: 0 10px;
        }
.container {
    margin: 20px;
}
.dropdown {
    margin-top: 20px;
}
footer {
    background-color: #b2935a;
    padding: 5px;
    text-align: center;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.food-elements {
    display: flex;
    justify-content: right;
    margin: 20px 0;
}

    /* Navigation Menu */
    nav {
      background-color: #333;
      padding: 10px 20px;
      position: relative;
	  min-height: 20px;
    }
    .menu {
      list-style: none;
      display: flex;
      justify-content: center;
    }
    .menu li {
      margin: 0 15px;
    }
    .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 1.2rem;
    }
    .menu a:hover,
    .menu a.active {
      color: #ffcc00;
    }
    /* Hamburger Menu for Mobile */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 10px;
    }
    .hamburger span {
      height: 3px;
      width: 25px;
      background: #fff;
      margin-bottom: 4px;
    }

 /* Responsive Adjustments */
@media (max-width: 768px) {
      .menu {
        flex-direction: column;
        display: none;
      }
      .menu.active {
        display: flex;
      }
      .hamburger {
        display: flex;
      }
    }
img {
  width: 100%;
  height: auto;
}