body{
    width: 100%;
    background-color: rgb(233, 235, 238);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.navbar{
    /* position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000; */
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-brand, .navbar-nav>.nav-item>.nav-link, .navbar-nav>.nav-item>.dropdown-menu>li>button>span{
    /* font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal; */
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 10pt;
}

.navbar-brand > h3{
    box-shadow: 0px 0px 5px 5px #ffffff69;
    border-radius: 6px;
    margin: 0;
    padding: 0 2px 4px 2px;
} 




/* Footer */
footer {
    background-color: var(--bs-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 12pt;
}

.footer-section p{
    font-size: 10pt;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 10pt;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

