body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.line {
  border-top: 1px solid darkgray;
  /* Creates the line */
  width: 80%;
  /* Width of the line */
  margin: 20px auto;
  /* Center the line */
}


.footer {
  background-color: #000;
  color: darkgray;
  padding: 20px 0;
  text-align: center;
  font-stretch: extra-condensed;
  height: 500px;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

.menu-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;

}

.footer-menu {
  list-style-type: none;
  margin: 0 15px;
  padding: 0;
  text-align: left;

}

.footer-menu li {
  margin: 5px 0;

}

.footer-menu h4 {
  color: rgb(170, 166, 166);
  font-weight: 500;
  text-decoration: underline;
  font-variant: small-caps;
}

.footer-menu a {
  text-decoration: none;
  color: darkgrey;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: lightblue;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo,
.footer-copyright,
.footer-designer {
  margin: 10px;

}

.footer-copyright h5 {

  color: darkslategray;

}



.footer-logo {
  font-size: 1.5em;
  font-weight: bold;
}

.footer-logo img {
  height: 40px;
}

.footer-designer {
  font-size: 0.9em;
  font-style: italic;
  color: darkgray;
}

.footer-designer img {
  height: 25px;
}

.bottom-strip {
  background-color: white;
  height: 25px;
  width: 100%;
  /* Ensures it spans the parent width */
  max-width: 1200px;
  /* Set your desired max-width for centering */
  margin: 0 auto;
  /* Centers the div horizontally */
  display: flex;
  /* Optional: for aligning internal content */
  justify-content: center;
  /* Optional: centers content inside the div */
  align-items: center;
  /* Optional: vertically centers content inside the div */
}




.footer-menu a {
  text-decoration: none;
  color: darkgrey;
  transition: color 0.3s;
}

@media (max-width:1024px) {

.footer {
  background-color:black;
  color: darkgray;
  padding: 20px 0;
  text-align: center;
  font-stretch: extra-condensed;
  height: auto;
}


  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
  }

  .footer-menu {
    text-align: left;
    /* Ensure text alignment is left */
    margin-bottom: 15px;
    /* Add spacing between sections */
  }

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-container {
    flex-direction: column;
    align-items: flex-start;
    /* Align menus to the left */
    padding-left: 20px;
    /* Optional: Add padding for better aesthetics */
  }

  .footer-menu h4 {
    text-decoration: none;
    color: red;
    transition: color 0.3s;
  }
}

@media (max-width:480px) {
  .footer-menu h4 {
    text-decoration: none;
    color: red;
    transition: color 0.3s;
  }


}