/* CSS Reset */
* {
    margin: 0;
    padding: 0;

}
/*Utility Classes*/
.h-primary {
    font-size: 3rem;
    padding: 15px;
}


/* Navigation Bar */
#navbar {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
    position: relative;

}

#navbar::before {
    content: "";
    background-color: rgb(90, 121, 84);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
}



/* Navigation Bar: List Styling */
#navbar ul {
    display: flex;
    font-family: 'Baloo Bhai', cursive;
    padding-left: 35px;
}

#navbar ul li {

    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a {

    color: black;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover {
    color: white;
    background-color: rgb(41, 218, 32);
}

/* Home Section */
#home {
    color: #000000;
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 450px;
}

#home::before {
    content: "";
    position: absolute;
    background: url('../imgs/banner.jpg') no-repeat center center/cover;
    height: 100%;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    opacity: 0.89;
}
