/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
} /* 2. Remove default margin */
* {
  margin: 0;
} /* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5; /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
} /* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
} /* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
} /* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
} /* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
} /*  10. Create a root stacking context*/
#root,
#__next {
  isolation: isolate;
} /* Size font (1rem = 10px) */
html {
  font-size: 62.5%;
  --color-scheme: hsl(200deg 90% 95%);
  --text-color: hsl(200deg 90% 10%);
} /* Custom font styling */
body {
  font-size: 1.8rem;
  font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  background-color: var(--color-scheme);
  color: var(--text-color);
  position: relative;
} /* Reset list margins */
ul,
ol {
  margin: 0;
  padding: 0;
}
.header {
  position: relative;
  background-color: var(--text-color);
  color: var(--color-scheme);
  padding: 1rem 1rem 3rem;
  margin-bottom: 8rem;
}
.header-nav {
  margin-bottom: 3rem;
}
.header-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
h1 {
  font-size: 3.5rem;
  line-height: 1;
  text-align: center;
}
.main {
  max-width: 90vw;
  margin: 0 auto;
}
.card {
  border-top: 0.5rem solid black;
  padding: 1rem;
  padding-bottom: 2rem;
  text-align: center;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.list li {
  font-size: 1.6rem;
  font-weight: 500;
}
.cta {
  background-color: var(--text-color);
  color: var(--color-scheme);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 2rem;
  display: inline-block;
}
.logo {
  color: var(--color-scheme);
  text-decoration: none;
  font-size: 2rem;
}
.desc {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 2zrem;
  margin-bottom: 3rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2.3rem;
  margin: 2rem 0;
}
.menu {
  background-color: transparent;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: none;
}
.icon {
  width: 10rem;
  height: 10rem;
  position: absolute;
  transform: translateX(-50%);
  bottom: -7.5rem;
  left: 50%;
  overflow: hidden;
  border-radius: 50%;
  border: 0.5rem solid var(--text-color);
}
.img-icon {
  min-width: 100%;
}
.surveys {
  text-align: center;
  margin-bottom: 2rem;
}
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  color: white;
}
footer {
  display: flex;
  justify-content: space-between;
  margin: 0 1rem;
}

.modal {
  background-color: hsl(--color-scheme / 0.95);
  /* filter: blur(5px); */
  color: white;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  position: absolute;
  z-index: 10;
}
