body {
  font-family: "Questrial", serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-size: 0.8em;
}

.header {
  z-index: 1005;
  background-color: white;
/*  background-color: white;
  color: black;
  padding-top: 1rem;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-size: 5vw;*/
}

header::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

header img {
  margin-right: 1rem; /* Adjust spacing as needed */
}

.logo-container {
  position: absolute;
  top: 2px; /* Adjust the spacing from the top */
  left: 42%; /* Adjust the spacing from the right */
}

.logo {
  height:4em;
}

h3 {
  margin-top: 0;
  top: -20px;
  position: relative;
  padding-bottom:5px;
  left:34%;
}

.terms-of-use,
.privacy-policy {
  left: 26% !important;
  padding-top: 20px !important;
}

.close-container {
  color: black;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  position: absolute;
  top: 20px; /* Adjust the spacing from the top */
  right: 40px; /* Adjust the spacing from the right */
}


.container {
  flex: 1;
  padding: 1.5rem;
  margin-top: 75px; /* Adjust based on header height */
  overflow-y: auto;
  z-index:1001;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color:white;
  background-color:black; /* Light background for better visibility */
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of items */
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd; /* Optional: Add a border for separation */
  font-size: 0.8rem;
  z-index: 1000;
}

  footer .footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    background-color: black;
    color: white;
  }

    footer .footer-links-container .footer-link {
      color: white; 
      text-decoration: none;
      margin: 0 10px;
      white-space: nowrap; 
      background-color: black;
    }

      footer .footer-links-container .footer-link:hover {
        text-decoration: underline;
        color: white!important;
      }

  footer .footer-brand {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    background-color: black;
    color:white;
  }

.footer-link {
  color: white!important; /* Change the text color to rebeccapurple */
}




/* Media query for small mobile viewports */
@media (max-width: 576px) {
  footer .footer-links-container {
    justify-content: flex-start; 
    gap: 8px; 
  }

    footer .footer-links-container .footer-link {
      margin: 0; 
    }

  .footer-link-support {
    font-weight:bold;
    color:gold;
    text-decoration: none!important;
  }
}




