.fa-brands{
    font-size: 28px;
}

footer h3 {
    font-size: 16px;
    margin-top: 20px;
    color: white;
}

footer a {
    font-size: 16px;
    text-decoration: none;  /* This removes the default underline */
    color: white;           /* Sets the color of the link text */
    padding: 5px 0;         /* Padding for a larger clickable area */
    transition: opacity 0.3s; /* A smooth transition effect */
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;          /* Reduces the opacity when hovered */
}

footer {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    background-color: #002c68;
    padding: 40px 0;
    color: white;
}
footer .footer-container{
    margin: 0 auto;
    padding: 0 3em;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .footer-links{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

footer .footer-copyright{
    width: 100%;
    margin-top: 2em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    border-top: 1px solid white;
    padding-top: 1em;
}

