footer{
    background-color: #6E75A4;
    color: white; 
    text-align: center;
    max-width: 1600px;
    width: 100%;
    height: 60px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 2px 2px #F0FFE8;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    gap: 30PX;
}
footer a{
    display: flex;
    align-items: center;
    transform: translateY(0px);
    transition: 0.3s;
    
}

footer img{
    transform: scale(1);
    transition: 0.5s;
    max-width: 20px; 
    height: auto;
}

footer a:hover img {
    transform: scale(1.5);
    transition: 0.5s;
}

.WJN02{
    display: flex;
    text-align: left;
    padding-left: 30px;
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-right: auto;
}

.top {
    display: flex;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    transform: scale(1);
    transition: 0.3s;
    color: white;
    padding-right: 30px;
}


/* footer.css */
@media screen and (max-width: 768px) {
    footer {
        height: auto; 
        padding: 10px 0;
        flex-direction: column; 
        gap: 10px; 
    }
    
    .WJN02 {
        margin-right: 0; 
        padding-left: 0px;
        text-align: center;
    }

    .top{
        padding-right: 0px;
    }
}