@charset "utf-8";
/* desktop header */
/* Style the navigation bar */
.navbarX {
  width: 100%;
  background-color: #191919;
  overflow: auto;
}

/* Navigation links */
.navbarX a {
  float: left;
  padding: 10px 12px;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  width: 33.33%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
  text-align: center; /* If you want the text to be centered */
}

/* Add a background color on mouse-over */
.navbarX a:hover {
  background-color: #000;
}

/* Style the current/active link */
.navbarX a.active {
  background-color: #4CAF50;
}


.navbarX a i{
  color: #fff;
  font-size: 17px;
}

/* 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: 500px) {
  .navbarX a {
    float: none;
    display: block;
    width: 100%;
    text-align: center; /* If you want the text to be left-aligned on small screens */
  }
}