
/** @note styling common .footer class, make it white with a shadow on top **/
.footer {
    z-index: 99999999999;
    background-color: #fff;
    box-shadow: 0 -2px 4px rgb(0 0 0 / 10%);
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #555;
    text-align: center;

    /** @note and fixed at bottom of the page **/
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    /** @note text montserrat, weight 400 */
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.footer a {
    color: #0f2a43 !important;
    text-decoration: none;
}
