* {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styling */
.navbar {
    font-size: 24px; /* Customize navbar font size */
}

.navbar-brand, .nav-link, .dropdown-item, button {
    font-weight: 400; /* Set font weight to normal */
}

/* Button Styling */
button.rounded-pill {
    font-size: 22px; /* Customize button font size */
    padding: 7px 15px; /* Increase padding for a larger button */
    border: none; /* Remove button border */
}

/* Center align menu items */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}