/*
#main-footer {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    text-align: right;
    justify-content: right;
  }

  #main-footer .social{
      display: flex;
      flex-direction: row;
      align-items: right;
      justify-content: right;
      z-index: 10;
  }

  #main-footer .social a{
      padding-left: 60px;
      margin: 15px;
  }

 */


#main-footer {
  position: fixed;
  bottom: 0; /* Position at the bottom */
  right: 0;
  width: 100%;
  text-align: center; /* Center text alignment for all screen sizes */
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center content horizontally */
  background-color: transparent; /* Optional: to differentiate the footer area */
  padding: 10px; /* Optional: for some padding around the footer */
  z-index: 10;
}

#main-footer .social {
  display: flex;
  flex-direction: row;
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  width: 100%;
}

#main-footer .social a {
 /* Adjusted padding for better fit */
  margin: 0px;
  padding-left: 90px;    
  text-decoration: none;
  color: #3498db; /* Optional: to style the links */
}


#social-Contact {
  text-align: center; /* Center text alignment for all screen sizes */
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center content horizontally */
  background-color: transparent; /* Optional: to differentiate the footer area */
  padding: 10px; /* Optional: for some padding around the footer */
  z-index: 10;
}

#social-Contact .social {
  display: flex;
  flex-direction: row;
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  width: 100%;
}

#social-Contact .social a {
 /* Adjusted padding for better fit */
  margin: 0px;
  padding-left: 90px;    
  text-decoration: none;
  color: #3498db; /* Optional: to style the links */
    gap: 15px;
}