@import url('fontface.css');
  
  /* Style for the loading overlay */
  #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Spinner Style */
  .spinner {
    border: 8px solid #f3f3f3; /* Light gray background */
    border-top: 8px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }

  /* Spinner animation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
   
    html,body{
      min-height: 100vh;
      font-size: 3vw;
    }
    .navbar-nav li{
      font-size: 1.5rem;
      font-family: "sukhumvit_setbold", sans-serif;

    }
  
    .card-img-top {
      width: 100%;
      height: 20vh;
      object-fit: cover;
    }

    .navbar-brand img {
        width: 8vw; /* Adjust the size based on viewport */
        height: auto;
        max-width: 50px; /* Prevents it from becoming too large */
      }

 

    body {
      font-family: "sukhumvit_settext", sans-serif!important;
      
    }
    footer {
      position: sticky;
      top:100%;
      background-color: #f2f2f2;
      padding: 25px;
      clear: both;
    }

