footer {
    background-color: rgb(21, 57, 96);
    display: flex;
    flex-wrap: wrap;
    min-height: 350px;
    justify-content: space-around;
    align-items: center;
    color: aliceblue;
    flex-wrap: wrap;
    background-image: url(../images/footer-bg.svg); 
    background-repeat: no-repeat;
    background-size: full auto;
}



footer>div {
    width: auto;

}

footer .links ul {
    display: flex;
    flex-direction: row;
}

footer .options ul li a {
    color: aliceblue
}

footer .options ul li a:hover {
    color: rgb(67, 119, 164)
}

footer .links li{
        padding: 10px;
        color: aliceblue;
        fill:aliceblue
}

footer .links li:hover{
    background-color:rgba(175, 175, 175, 0.252);
    cursor: pointer;
}

/* .footer-front > div {
margin: 5px 0;
} */

#newsletter {
    margin: 40px 0;
    display: flex;
    align-items: center;
   
}

#newsletter textarea {
    height: 48px;
    outline: none;
    border: none;
    padding: 1ch
}

#newsletter-button{
    height: 48px;
    outline: none;
    border: none;
    padding: 0 1ch;
    cursor: pointer;
}

.end{
    color: #d1d1d1;
    background-color:#001829;
    padding: 0.1ch 4ch;
}

@media screen and (max-width: 625px) {
    footer {
        display: flex;
        flex-direction: column
    }
}