#navbarNav{
    padding-left:500px ;
    font-weight: bold;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
}
.navbar-brand{
    font-style: oblique;
    font-weight: bolder;
    font-size: x-large;
    padding: 5px;
}
.card-body{
    background-color: #FFFAF6;
    height: 400px;
}
#bton {
  background-color:#FE998A;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  
  margin: 4px 2px;
  transition: 0.3s;
}
#bton:hover {
  background-color:white;
  color: #FE998A;
  border-style:solid;
  border-color: #FE998A;
  border-width:1px;
}
#list a:hover{
  background-color: #FE998A;
  color:black;
}
#list:hover{
    background-color: #FE998A;
}
 .btn:hover {
  color: #FE998A;
  border-style:solid;
  border-color: #FE998A;
  border-width:1px;
}

.container2 {
    position: relative;
    width: 320px;
    height: 300px;
    margin: 60px auto 0 auto;
    perspective: 1000px;
  }
  .bg-image-hover-zoom {
    height: 200px; /* [1.1] Set it as per your need */
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .bg-image-hover-zoom img {
    transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .bg-image-hover-zoom:hover img {
    transform: scale(1.5);
  }