
.footer{
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0.5rem;
    gap: 1rem;
    background-color: var(--primary-color);
    color: white;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-right{
    display: flex;
    margin-right: 4rem;
    align-items: center;
    gap: 0.2rem;
}

.footer-right .images{
    display: flex;
    gap: 0.5rem;
}

.footer-right img{
    height: 1.5rem;
    width: 1.5rem;
}

.website-by{
    font-size: 0.7rem;
    font-weight: bold;
}

@media (max-width: 480px) {
    .footer{
        flex-direction: column;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    .footer-right{
        margin-right: 0;
    }
}

@media (max-width: 300px){
    .footer{
        height: auto;
    }
}