/* Base font size for consistent scaling across all devices */
html {
  font-size: 16px; /* Standard base */
}

/* Adjust base font size for different screen sizes */
@media (min-width: 1920px) {
  html {
    font-size: 18px; /* Slightly larger on large screens */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px; /* Slightly smaller on tablets */
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px; /* Smaller on mobile */
  }
}

/* Ensure consistent rendering across different pixel densities */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

*{
  color: #fff;
}

.intro-text-large {
  font-size: 1.2em !important; /* Adjust value as needed */
} 

.main-container{
  background-color: #040404 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* .tm-header,
.tm-header-mobile {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}  */