/*/////////////////////////*/
/*///////// Footer ////////*/
/*/////////////////////////*/

.footer {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--primary-accent-color);
    padding-top: 15px;
  }
  
  .contact-icons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    margin: auto;
    width: 1rem;
  }
  
  .social-icon-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0.7rem 1rem 0.7rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.5s ease;
    background-color: transparent;
    color: var(--primary-accent-color);
  }
  
  .social-icon-link:hover,
  .social-icon-link:active,
  .social-icon-link:focus {
    background-color: var(--secondary-color);
    color: var(--primary-color);
  }
  
  .legal-links-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .legal-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0rem 0.5rem 0rem 0.5rem;
    font-size: 12px;
    transition: all 0.5s ease;
    color: var(--primary-accent-color);
  }
  
  .legal-link:hover {
    text-decoration: underline;
  }
  
  .copy-rights {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .copy-rights-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0.5rem 0.5rem 0rem 0.5rem;
    font-size: 10px;
    transition: all 0.5s ease;
    color: var(--primary-accent-color);
  }
  
  .Madewith-link {
    color: var(--primary-accent-color);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    transition: all 0.5s ease;
    margin-bottom: 0.5rem;
  }
  
  
  