    body, html {
      height: 100%;
      margin: 0;
      padding: 0;
    }

    .video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      z-index: -1;
    }

    .video-background video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      padding-top: 20vh;
    }

    .custom-navbar {
  background-color: rgba(33, 37, 41, 0.7);
}

  .hover-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.15);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3) !important;
    cursor: pointer;
  }

    .sticky-bottom-card {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

  footer a:hover {
    opacity: 0.85;
  }
  footer .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #212529;
  }    
