footer {
    font-size: 12px;
    color: white;
    padding: 15px;
    margin-top: 30px;
    background: linear-gradient(to right, #401d55, #401d55);
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: right;
}
footer .logos img {
    height: 35px;
    filter: brightness(125%);
    transition: scale 0.3s ease;
}

footer .logos img:hover {
    scale: 1.05;
}