:root {
    --bs-primary: #097454;  /* New primary color */
    --bs-secondary: #7f7fff;  /* New secondary color */
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #17a2b8;
}
  

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

    font-family: "Host Grotesk", sans-serif !important;
    font-optical-sizing: auto !important;
    font-style: normal !important;
}

/* Container to hold the media */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Full-screen image for desktop view */
.background-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full-screen video for mobile view */
.background-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Switch to video for screens smaller than 768px */
@media (max-width: 768px) {
    .background-image {
      display: none;
    }
    .background-video {
      display: block;
    }
}