@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=DM+Sans:wght@400;500;700&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Apply the fonts to specific elements or the whole page */
body {
  font-family: "Roboto", sans-serif;
}

/* nav bar  */
.navbar {
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 50;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0rem;
  height: 100%;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-links li a {
  color: #1f2937; /* text-gray-800 */
}

.nav-links li a:hover {
  color: green; /* hover:text-amber-600 */
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: black;
  font-size: 1.25rem; /* text-xl */
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f59e0b; /* hover:text-amber-600 */
}



@media (max-width: 720px) {
  .navbar-container {
    padding: 0.1rem 2rem;
  }

  .logo {
    height: 2rem;
    width: 4rem;
    object-fit: cover;
  }
}

.top-bar {
  background: #20da1e;
  padding-block: 10px;
}

.top-bar .govt-logo {
  height: 6rem;
  width: auto;
  object-fit: cover;
}

.registration-cta {
  color: red;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-marquee {
  display: inline-block;
  min-width: 100%;
  animation: marquee 12s linear infinite;
}
