body {
  left: 0px;
  right: 0px;
  margin: 0;
  
}

a {
  color: red;
}

/* Style the navigation bar */
.navbar {
  width: 100%;
  background-color: lime; /* Set initial background to transparent */
  overflow: auto;
  position: fixed; 
  top: 0;
  transition: background-color 0.3s; /* Add smooth transition for background color change */
  z-index: 1000; /* Ensure the navbar appears above other content */
  
  display: flex; /* Use flexbox to stretch across the screen */
  justify-content: space-between; /* Align logo and links */
  align-items: center; /* Vertically center content */
  
  
  padding: 0 20px; /* Add some padding for spacing */
  box-sizing: border-box; /* Include padding and border in the total width */
  left:  0;
}

/* Navbar links */
.navbar a {
  text-align: center;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}

/* Navbar links on mouse-over */
.navbar a:hover {
  background-color: #000;
}

/* Current/active navbar link */
.active {
  background-color: #04AA6D;
}

#image-container {
  height: 40em;
  width: 100%;
  display: block;
  background-color: yellow;
  margin: 0px;
  left: 0;
  right: 0;
  
  align-content: space-around;
  align-items: flex-end;
  justify-content: space-between;
  
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.image-container-item {
  padding: 5em;
  
}

.product-bar {
  width: 100%;
  
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  
}

.product-bar > article {
  background-color: black;
  color: white;
  padding: 2em;
}

.product-bar > article:hover {
  background-color: darkgrey;
  color: red;
  border-radius: 2em;
}

.product-bar > article {
  margin: 2em;
  transition: all 1s ease-out;
}

main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  
  align-items: flex-start;
  z-index: 10;
  
  background-color: steelblue;
  
  width: 100%;
  margin: auto;
  
}

section {
  background-color: lightblue;
  border: 1px solid red;
  
  height: 20em;
  width: 80%;
  
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  
  justify-content: space-between;
  align-content: center;
  
  margin-top: 4em;
  margin-bottom: 4em;
  
  margin-left: auto;
  margin-right: auto;
  
  color: white;
 
}

section > article, section > div {
  border: 1px solid green;
  width: auto;
  height: auto;
}

section article {
  background-color: black;
    /*! width: 30%; */
  
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 3em;
    margin-right: 3em;
  
    border-radius: 0.5em
}

#catering {
  background-color: blanchedalmond
}

#catering > article {
  margin: auto;
  width: auto;
  height: 70%;
}

article > div {
  margin: 2em;
}

footer {
  width: 100%;
  background-color: whitesmoke;
  
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  
  justify-content: space-around;
  
  height: 5em;
  margin-top: auto;
  margin-bottom: auto;
}

section > article:hover {
  border-radius: 2em;
  background-color: steelblue;
  transform: rotate(15deg);
  transition: transform 0.5s ease-in-out, border-radius 1s ease-out;
}

section > article {
  transition: transform 0.5s ease-in-out, border-radius .25s ease-out, background-color 2s ease-in-out;
}

.fade-in {
  opacity: 0;
}

.is-faded {
  animation: fadeIn 1200ms both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}