/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* display: flex; */
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;

}


footer {
    background-color: rgb(0, 0, 0);
    /* Example: Dark background for footer */
    color: var(--footer-text-color, white);
    /* Example: Light text color */
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
    flex-shrink: 0;
    width: 100%;
  }
  
 

.footer a{
    color: rgb(177, 177, 177);
    text-decoration: none;

}




.footer a img{
    filter: invert(1);
}


footer {
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover{
    cursor: pointer;

}

#social-icons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
}

.footerIcon:hover{
    transform: scale(1.5);
}