@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

* {
    font-family: 'Poppins', 'Kalpurush', sans-serif;
    padding: 0px;
    margin: 0px;
}

body {
    margin: 16px;
}

h1, h2, h3, h4, h5, h6, .title {
    font-family: "Space Grotesk", "Hind Siliguri", sans-serif;
}

.title {
    font-size: 1.2em;
}

.navbar {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 16px;
    justify-content: center; 
}

.navbar a {
    color: #152C56;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 4px;
    transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.active {
    background-color: #eef2ff;
    font-weight: bold;
}
  

.navbar a:hover:not(.active) {
    background-color: #f3f5ff;
    transition: 
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.header {
    display: flex;
    justify-content: center; 
}

.hero {
    margin-left: 100px;
}