/* .news-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 10px 0;
} */

.footer {
    background-color: var(--dark-blue-light);
    color: var(--platinum);
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 200px;
    padding-top: 50px;
    /* Set the height of the footer here */
}

.footer a {
    margin: 20px;
    color: #333;
    text-decoration: none;
    font-size: 2.0rem;
    color: var(--platinum);
}

.footer p {
    font-size: 1.0rem;
    margin: 20px;
}

/* responsive */

@media (max-width: 992px) {

    .footer a {
        font-size: 1.5rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {

    .footer a {
        font-size: 1.2rem;
    }

    .footer p {
        font-size: 0.6rem;
    }
}