@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  font-family: 'Poppins', serif;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: 'Poppins', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ul,
li {
  list-style: none;
} */

.fr_hdr {
  background-color: #d0eded;
  padding: 3rem 0;
}

.fr_hdr_center {
  width: 40%;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fr_hdr_center h1 {
  color: #2e2e54;
}

.fr_hdr_center span {
  color: #828298;
}

.fr_hdr_search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid #a2dbdc;
  width: 650px;
  border-radius: 2rem;
  padding: 0 1rem;
  margin: auto;
  background-color: #fff;
  color: #000;
}

.fr_hdr_popular_chips_all {
  display: flex;
  gap: 1rem;
}

.fr_hdr_popular {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}


/* css for ExploreCoursesDetails.tsx */
