/* Fixed carousel images height */
/* .carousel-item img {
    max-height: 350px;
} */

/* Fixed card images height */
/* .card img {
    max-height: 200px;
} */

/* Center a div horizontally and vertically */
.fullh {
    height: 100vh;
}

.fullcenter {
    margin: auto;
    width: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Define custom colors */
:root {
    --yellow: #f3c623;
    --brown: #a67c52;
    --dark-brown: #5d4c46;
    --darker-brown: #4d3319;
    --black: #000;
    --white: #fff;
  }
  
  /* Override Bootstrap styles */
  .navbar {
    background-color: var(--yellow);
  }
  
  .btn-primary {
    background-color: var(--yellow);
    border-color: var(--yellow);
  }
  
  a {
    color: var(--darker-brown);
  }
  
  /* Use custom colors */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--darker-brown);
  }
  
  body {
    background-color: var(--white);
  }