@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');
body {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.footer-body {
    background-color: #100A0A;
}

.footer-img {
    width: 120px;
    height: auto;
}

.btn-floating {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    font-size: 18px;
    color: white;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}

.btn-floating:hover {
    background-color: #FFD800;
    color: #100e0a;
}

.cbLink {
    color: #FFD800;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.cbLink:hover {
    color: #ffffff;
}

hr {
    margin: 2rem auto;
    width: 60%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 576px) {
    .footer-img {
        width: 90px;
    }
    .btn-floating {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}