.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/faq.jpg") center/cover no-repeat;
  filter: blur(4px) brightness(40%);
  -webkit-filter: blur(4px) brightness(40%);
  transform: scale(1);
}

/* for autofill background color */
input:is(:-webkit-autofill, :autofill) {
  background: transparent;
}

textarea {
  font-family: inherit;
  font-size: inherit;
}

input,
textarea {
  padding: 1rem;
  border-radius: 8px;
  background: transparent;
  border: solid 1px var(--muted);
  font-size: 16px;
  color: var(--muted);
}

#submit {
  background-color: var(--muted), transparent;
  backdrop-filter: blur(8px);
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

#submit:hover {
  background-color: var(--muted);
  cursor: pointer;
}
.about-exit {
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.about-exit:hover {
  opacity: 1;
  color: var(--accent);
}

.about-exit {
  font-size: 14px;
}

.navbar-exit {
  display: flex;
  padding: 0 5vw;
  align-items: center;
  justify-content: end;

  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 9999;

  background: rgba(18, 18, 18, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);

  background-color: rgba(18, 18, 18, 0.75) !important;
}

.navbar-exit::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.navbar-exit > * {
  position: relative;
  z-index: 1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
  padding-top: 1rem;
  gap: 1rem;
  width: 50%;
  align-self: center;
  background-color: var(--panel-border);
  border-radius: 8px;
  backdrop-filter: blur(8px) brightness(50%);
  position: relative;
  top: calc(15svh);
  animation: fadeUp 0.8s ease-out forwards;
  overflow-y: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
  align-self: center;
}

@media (max-width: 640px) {
  .container {
    width: 90%;
  }
  .hero {
    padding-bottom: 100vw;
  }
}
