*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/* CSS Variables */
:root{
    --navbar-height: 59px;
}
/* Navigation Bar */
#navbar{
  display: flex;
  align-items: center;
  position: sticky;
  top: 0px;
}

#navbar::before{
  content: "";
  background-color: (white);
  position: absolute;
  top:0px;
  left:0px;
  height: 100%;
  width:100%;
  z-index: -1;
  opacity: 0.7;
}

/* Navigation Bar: Logo and Image */
#logo{
  margin-left: 30px;
  margin-right: 100px;
   float: left;
}

#logo img{

  height: 68px;
  margin: -8px;
  margin-top: -2px;

}




#navbar{
    display: flex;
    flex-direction: row;
    flex:auto;
    background-color: white;
    padding: 08px;
}


ul{
    display: flex;
    flex-direction: row;
    flex: auto;
    font-family: 'baloo bhai', cursive;
    background-color: rgb(255, 255, 255);
}

#navbar ul li{ 
 
    list-style: none;
    font-size: 17px;
    
}

#navbar ul li a{

    color: rgb(0, 0, 0);
    display: block;
    align-items: center;
    justify-content: center;
    padding: 12px 13px;
    border-radius: 10px;    
}
#navbar ul li a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(119, 118, 118);
    text-decoration: underline;
    font-size: 18px;
  }
  .search{
    justify-content: right;
    align-items: right;
    margin-right: 10px;
  
    
  }
  #navbar input{
    color: black;
    padding: 13px 15px;
    margin-right: -25px;
    border: rgb(119, 118, 118) ;
    border-radius: 6px;
  }


#home p{
    padding: 52 px 8px;
    color:white;
    text-align: left;
    font-size: 1rem;
    font-family: 'Bree Serif', serif;
}

#home{
    display: flex;
    flex-direction: column;
    height: 500px;
    align-items: LEFT;
    justify-content: center;
}

#home::before{ 
    content: "";
    position: absolute;
    background: url('../3.jpg') no-repeat center center/cover;
    height: 600px ;
    top:0px;
    left:0px;
    width: 100%;
    z-index: -1;
    opacity:0.8;
}
.faculty{
    text-align: center;
   color: white;
   font-size: 30px;
   margin-left: 200px;
   margin-right: 200px;
   background-color: rgb(85, 84, 84);
   padding: 12px 8px;
   border-radius: 10px;
    
}
.column{
    
    display: flex;
    margin: 20px;
    margin-bottom: 50px;
    margin-top: 50px;
    justify-content: center;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto  30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgb(33, 33, 33); /* this adds the "card" effect */
    animation-name: column1;
    animation-duration: 01s;
    animation-iteration-count: 01;
  }
  @keyframes column1 {
    from {
      margin-right: 20px;
    }
    to{
      margin-left: 20px;
    }
    
  }
  .card img{
    border-radius: 20px ;
    height: auto;
  max-width: 100%;
  max-height: 190px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 3%;
  vertical-align:middle;
}
.card img:hover{
    height: auto;
  max-width: 100%;
  max-height: 200px;
  margin-left: 3%;
  vertical-align:middle;
  border-image: round;
  }
  .title {
    color: grey;
    font-size: 18px;
  }
  
  button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
  }
  
  button:hover, a:hover {
    opacity: 0.7;
  }
h1{
    text-align: center;
    text-decoration: underline 4px;text-align: center;
    font-size: 30px;
}

h2{
    text-align: left;
    text-decoration: underline 4px;text-align: left;
    margin-left: 20px;
    font-size: 28px;
}
h4{
    font-size: 21px;
    margin-bottom: 5px;
}
.heading{
    color: white;
    background-color: rgb(85, 84, 84);
    text-decoration: underline 4px white;
    padding: 40px;
    font-size: 38px;
}
a{
    text-decoration: none;
    font-size: 20px;
}
a:hover{
    color: black;
}
  
#copyright {
    text-align: center;
  padding: 20px 0;
}