

html, body {
  margin: 0;
  padding: 0;
bottom: 0;
}

.lower-navBar {
  position: relative;
  width: 100%;
  background-color: #979797;
  color: white;
  padding: 20px 0;
  box-sizing: border-box;
  margin: 0;
  height: auto;
}

.navContent-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

.footer-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lowerNav-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-image: url('..images/EkpokpaLogo.png'); /* Change to your image path */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.content-arrangement {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}


.lowerNav-item a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 calc(33.33% - 20px);
}

@media screen and (max-width: 768px) {
  .footer-item a {
    flex: 0 0 calc(50% - 20px); /* On smaller screens, make two columns with two items in each */
  }
}



