footer{
    /* background:rgb(9, 57, 105); */
    background:rgb(0,0,0);
    padding:30px;
}
body{
    /* display: grid;
    grid-template-rows: 1fr auto;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}
body>.container{
    flex:1;
}
.footer-brand{
    /* font-family: "Playfair Display", serif;   */
    font-family: "Libre Baskerville", serif;
    font-size: 36px;
    font-weight: 700;
    color:white;
    text-transform: uppercase;
    text-align: center;
}
.footer-brand img{
    width: 230px;
    object-fit: contain;
}
.footer-links ul{
    display: flex;
    justify-content: center;
    gap:15px;
}
.footer-links ul li a,
footer .copyright a{
    color:rgb(132, 156, 180);
}
.footer-links ul li a:hover,
footer .copyright a:hover{
    color:white;
}
.bb-footer-grey{
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
footer .copyright{
    text-align: center;
    color:white;
}

section .footer-grey{
    background-color: #1c1c1c;
    color:white;
    padding:20px;
}

section .footer-grey .container{
    max-width: 600px;
    margin:0 auto;
    text-align: center;
}
.footer-separator{
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    margin:20px 0;
}