/* CSS reset */
*{
    margin: 0;
    padding: 0;
}
/* CSS Variable */
:root{
   --navbar-height : 59px;
}
#navBar{  
    display: flex;
    align-items: center;
    position: sticky;
    top: 0px;
}
/*NavBar : Logo and Image */
.logo{
 margin: 10px 34px;
 
}
.logo img{
    width: 80px;
    height: 80px;
    margin: 5px 6px;     
    border-radius: 50%; 
}
/*NavBar : List Items */

#navBar ul{
    display: flex;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-style: 1.2rem;
}
#navBar::before{
    content: "";
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    top:0px;
    left:0px;
    z-index: -1;
    opacity: 0.4;
}

#navBar ul li{    
    list-style: none;
    font-style: 1.3rem;
    
    
}
#navBar ul li a{   
  
   color: rgb(98, 9, 121);
   display: block;
   padding: 3px 22px;
   border-radius: 20px;
   text-decoration: none;    
}
#navBar ul li a:hover{
    color: black;
    background-color: white;    
}
#home{
    display: flex   ;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
    height: 785px;
}
#home::before{
    content: "";
    background: url('../Image/Temple02.jpg') no-repeat center center/cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top:0px;
    left:0px;
    z-index: -1;
    opacity: 0.40; 
}
#home h1{
    
    color: rgb(98, 9, 121);
    text-align: center;
    font-size: 3.8rem;
}
#home p{    
    color: rgb(65, 5, 80);
    text-align: center;
    font-family: 'Bree Serif', serif;
    font-size: 1.8rem;
}


/* programs */

#Programs{
    margin: 34px;
    display: flex;
}
#Programs .box{
    border: 2px solid brown;
    padding: 34px;
    margin: 3px 6px;
    border-radius: 23px;
    background-color: rgb(194, 215, 235);
}
#Programs .box img{
    height: 180px;
	width:95%;
    margin: auto;
    display: block;
    border-radius: 10px;
}
#Programs .box p{
    font-family: 'Baloo Bhaijaan 2', cursive; 
   
}


/* Utility section */
#h-primary{
 font-size: 3.8rem;
 padding: 12px; 
}
#h-secondary{
font-size: 2.3rem;
padding: 12px;  
}


.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}
.center{
    text-align: center;
}
footer{
    background: black;
    color: white;
    padding: 9px 20px;
}
