*{
    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;

}
*{
    margin: 0px;
    padding: 0px;
   }
   body{
    font-family: arial;
   }
   .main{
   
    margin: 2%;
   }
   
   .card{
        width: 20%;
        display: inline-block;
        box-shadow: 2px 2px 20px black;
        border-radius: 5px; 
        margin: 2%;
       }
   
   .image img{
     width: 100%;
     border-top-right-radius: 5px;
     border-top-left-radius: 5px;
     
   
    
    }
   
   .title{
    
     text-align: center;
     padding: 10px;
     
    }
   
   h1{
     font-size: 20px;
    }
   
   .des{
     padding: 3px;
     text-align: center;
    
     padding-top: 10px;
           border-bottom-right-radius: 5px;
     border-bottom-left-radius: 5px;
   }
   button{
     margin-top: 40px;
     margin-bottom: 10px;
     background-color: white;
     border: 1px solid black;
     border-radius: 5px;
     padding:10px;
   }
   button:hover{
     background-color: black;
     color: white;
     transition: .5s;
     cursor: pointer;
   }
  
 