main {
  margin-block-start: 6rem;
  counter-reset: section;
}
.hero h1 {
  font-size: 4.5rem;
}

.wrapper-main table {
  width: 100%;
  border-collapse: collapse;
  max-width: 90vw;
}

.wrapper-main table tr,
td {
  border: 1px solid var(--text-color);
  padding: 1rem;
  height: 2rem;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
  overflow: hidden;
}
.wrapper-main table tr:has(th) {
  background-color: #f2f2f2;
  color: black;
}

/* .wrapper-main td:first-child::after {
    counter-increment: section;
    content: counter(section)".";
} */

main {
  position: relative;
}
main .input {
  position: absolute;
  height: 3rem;
  width: 15rem;
  right: 20px;
  top: 80px;
  border-radius: 1rem;
  color: var(--text-color);
  box-shadow: 2px 2px 10px var(--text-color);
}

@media screen and (max-width: 800px) {
  table {
    font-size: 12px;
  }
  .logo-mobile {
    top: -80px;
  }
  .mobile-nav-toggle {
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1;
    position: fixed;
    z-index: 9999;
    top: 2rem;
    right: 2rem;
    border: none;
    background: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  input[type="search"],
  input[type="search"]::placeholder {
    height: 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
  }
  main .wrapper-main {
    margin-block-start: 2rem;
  }
}
