*{
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
/*CSS Variables*/
:root{
  --navbar-height:59px;
}
#navbar{
  position: sticky;
  display: flex;
  align-items: center;
  top: 0px;
}

/* NavagationBar:Logo and images*/
#logo{


}

#logo img{
  height: 50px;
  margin: 2px 2px;
}

/* Navigation BAr: List STyling*/
#navbar ul{
  display:flex;
  font-family: 'Bree Serif', serif;
} 
#navbar::before{
  content: "";
  background-color: hsl(0, 76%, 28%);
  position: absolute;
  top:0px;
  left:0px;
  height: 100%;
  width: 100%; 
  z-index: -1;
  opacity: 0.8;
}

#navbar ul li{
  list-style: none;
  font-size: 1.6rem;
}
#navbar ul li a{
  color:rgb(255, 255, 255);
  display:block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  }
  #navbar ul li a:hover{
      color:blue;
      background-color: white;
  
  }
/* Services Section */
#services{
  margin: 15px;
  display: flex;
}
#services .box{ 
  border: 2px solid brown;
  padding: 3px;
  margin: 2px 5px;
  border-radius: 28px;
  background: #f2f2f2;
  margin-bottom: 20px;
}

#services .box img{ 
 height: 160px;
 margin: auto;
 display: block;
}

#services .box p{
  font-family: 'Bree Serif', serif;

} 
.h-primary{
  font-family: 'Bree Serif', serif;
  font-size: 3.8rem;
  padding: 1px;
}

.h-secondary{
  font-family: 'Bree Serif', serif;
  font-size: 2rem;
  padding: 12px;
}