

/* Set the display to flex and direct the children to column direction */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Make content flex and grow to push the footer down */
  .content {
    flex: 1;
  }
  
  /* Footer CSS */
  .footer {
    /*background-color: var(--primary-color);*/
    /*color: var(--secondary-color);*/
    --bg2-color: #2e2360;
    --text3-color: #b488bd;
    --bg4-color: #ffd8b8;
    background-color: var(--bg2-color);
    color: var(--text3-color);
    padding: 20px;
    /*width: 97.39%;*/
    font-size: medium;
    /* Removed the 'bottom: 0;' since it's used for absolutely positioned elements */
  }

  .footer-logo {
    height: 200px; 
    /*margin-right: 10px; */
    margin-left: 5%;
  }
  
  .footer-content {
    display: flex;
    max-width: 1200px;
    /*margin: 0 auto;*/
    padding: 0 20px;
    justify-content: space-between;
  }

.footer-section h3 {
    color: var(--text3-color);
    margin-bottom: 10px;
    font-size: 1.7em;
    /*font-weight: bold;*/
    /*text-decoration: underline;*/
}

.footer-section ul {
    font-size: .8em;
    list-style: none;
    padding: 0;
}

.footer-socials {
    font-size: 1em;
    list-style: none;
    padding: 20px;
}

.footer-section ul li a {
  color: var(--text3-color);
  text-decoration: none;
  padding: 2px;
}

.footer-section ul li a:hover {
    color: var(--bg4-color);
    text-decoration: none;
  }

.footer-section i {
    color: var(--text3-color);
    text-decoration: none;
    padding-right: .8em;
  }


  .footer-section i:hover {
    color:var(--bg3-color);
  }
.footer-section a {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.5em;
}
