.navbar {
  width: 100%;
  height: 55px;
  background-color: #FFBC59;
  overflow: auto;
}

img {
  width: 25px;
  height: 25px;
}

/* Navigation links */
.navbaritems {
  display: block;
margin-left: auto;
margin-right: auto;
  width: 45%;
  height: 55px;
  background-color: #FFBC59;
  overflow: auto;
  
}
.navbaritems a {
  float: left;
  padding: 12px ;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 14px;
  width: 13%;
  text-align: center; /* If you want the text to be centered */
  white-space: nowrap;
  
}


/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 1000px) {
 
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left; /* If you want the text to be left-aligned on small screens */
  }
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

header, section, footer {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 20px;
}

h1, h2, h3 {
  color: #333;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Your CSS styles for responsive design here */
@media screen and (max-width: 1000px) {
  body {
      font-size: 16px;
  }
  header, section, footer {
    max-width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
}

}

@media screen and (max-width: 480px) {
  body {
      font-size: 14px;
      
    }
    header, section, footer {
      max-width: 90%;
      margin: 0 auto;
      padding-bottom: 20px;
  }
  }