@font-face {
    font-family: 'B&O';
    src: url('/font/BO_font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.navbar-brand {
    font-family: 'B&O';
}

/* .card {
    max-width: 300px;
} */

/* .card:hover {
	border: 1px solid #2c3e50;
} */

/* [1] The container */
.card-hover {
    /* height: 300px; [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 */
  .card-hover img {
    transition: transform 0.3s ease .05s;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .card-hover:hover img {
    transform: scale(1.1);
  }

  .card-img-top {
    height: 35vh;
    object-fit: cover;
  }

  /* .dropdown:hover>.dropdown-menu {
    display: block;
  } */

  .center {
    text-align: center;
  }

 .nav-link {
    outline: none;
  }

  .delete-form {
    display: inline;
  }
  
